Neocities.org - the web site. Yep, the backend is open source!
Find a file
2024-03-26 12:50:19 -05:00
.github/workflows github action ruby 3.3 (previous commit enabled YJIT) 2023-12-25 10:56:24 -06:00
app chat: multi-message prompting, system message, copy button, temp setting 2024-03-25 17:40:28 -05:00
ext sinatra indifferent hash not an integer 2024-02-17 10:43:05 -06:00
files sitemap: improvements, fixes, add tags 2019-10-09 15:13:42 -07:00
migrations add logic for tutorial requirement 2024-03-01 12:50:41 -06:00
models add img/vnd.microsoft.icon to mime type list, sort list 2024-03-22 16:58:53 -05:00
public chat: target _blank for any links. Also Daria 2024-03-26 12:50:19 -05:00
sass chat: multi-message prompting, system message, copy button, temp setting 2024-03-25 17:40:28 -05:00
tests dont allow directories to end with .htm or .html. Breaks the dashboard UI, also breaks the cdn 2024-03-13 16:57:54 -05:00
vagrant update vagrantfile to work with latest, closes #478 2024-01-04 02:30:24 -06:00
views chat: multi-message prompting, system message, copy button, temp setting 2024-03-25 17:40:28 -05:00
workers remove surf code, clean up purge cache and better define purge cache tests for expected behavior 2024-02-21 13:51:41 -06:00
.gitignore whitelist emails capability 2024-03-13 16:20:32 -05:00
app.rb add unsafe-eval to script-src to fix replies on comments 2024-01-07 18:23:28 +00:00
app_helpers.rb massive update to deprecate site_file/upload in favor of api/upload, improve dashboard. todo: webdav switchover, dashboard error/result messages 2024-03-06 20:37:44 -06:00
code-of-conduct.txt Update code-of-conduct.txt 2016-02-08 12:45:41 -08:00
config.ru integrate airbrake 2024-01-21 11:47:02 -06:00
config.yml.ci add minfraud 2023-11-22 00:09:58 -06:00
config.yml.template add minfraud 2023-11-22 00:09:58 -06:00
environment.rb no airbrake for retries in sidekiq, only failures 2024-02-02 14:26:16 -06:00
Gemfile integrate airbrake 2024-01-21 11:47:02 -06:00
Gemfile.lock Merge pull request #492 from neocities/dependabot/bundler/nokogiri-1.16.2 2024-03-04 14:32:36 -06:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb puma: use phased restart instead of preload 2024-01-04 18:02:53 +00:00
rainbows_config.rb mostly finished port to ruby3 2022-08-10 14:31:36 -05:00
Rakefile exclude deleted sites from sitemap 2024-02-16 09:43:01 -06:00
README.md Merge branch 'github-actions' of https://github.com/talklittle/neocities into talklittle-github-actions 2022-11-12 13:51:51 -06:00
Vagrantfile update vagrantfile to work with latest, closes #478 2024-01-04 02:30:24 -06:00

Neocities.org

Build Status Coverage Status

The web site for Neocities! It's open source. Want a feature on the site? Send a pull request!

Getting Started

Neocities can be quickly launched in development mode with Vagrant. Vagrant builds a virtual machine that automatically installs everything you need to run Neocities as a developer. Install Vagrant, then from the command line:

vagrant up --provision

Vagrant takes a while, make a pizza while waiting

vagrant ssh
bundle exec rackup -o 0.0.0.0

Now you can access the running site from your browser: http://127.0.0.1:9292

Want to contribute?

If you'd like to fix a bug, or make an improvement, or add a new feature, it's easy! Just send us a Pull Request.

  1. Fork it (https://github.com/neocities/neocities/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request