Neocities.org - the web site. Yep, the backend is open source!
Find a file
2025-04-22 21:15:32 -05:00
.github/workflows attempt 1 of several million to fix coveralls 2024-11-19 17:18:21 -06:00
app persist browse page search prefs, scrub not allowed chars for tag entry 2025-03-25 11:49:49 -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 editor: add editor help tooltips 2024-10-13 22:30:24 -05:00
models catch dir too long 2025-04-15 15:35:17 -05:00
public remove old skeuocard images 2025-02-08 11:59:37 -06:00
sass goodbye skeuocard, and thanks for all the memories <3 2024-11-19 00:46:05 -06:00
tests fix for flaky tests 2025-04-22 21:15:32 -05:00
vagrant update vagrantfile to work with latest, closes #478 2024-01-04 02:30:24 -06:00
views no csrf for js create validate index 2025-04-15 15:38:33 -05:00
workers fix for screenshot sizing issues 2024-12-05 15:41:26 -06:00
.gitignore whitelist emails capability 2024-03-13 16:20:32 -05:00
app.rb no csrf_token for create 2025-04-15 15:34:47 -05:00
app_helpers.rb convert net::http calls to http gem 2024-04-10 12:59:31 -05:00
code-of-conduct.txt Update code-of-conduct.txt 2016-02-08 12:45:41 -08:00
config.ru webdav: improve docs, enforce supporter only access 2025-02-08 11:59:20 -06:00
config.yml.ci sessions: new secret, set issued time of session cookie for revoking 2025-01-31 20:03:41 -06:00
config.yml.template sessions: new secret, set issued time of session cookie for revoking 2025-01-31 20:03:41 -06:00
environment.rb remove net-smtp gem, not used and causing drama 2025-02-25 16:32:02 -06:00
Gemfile remove net-smtp gem, not used and causing drama 2025-02-25 16:32:02 -06:00
Gemfile.lock Merge pull request #582 from neocities/dependabot/bundler/rack-3.1.12 2025-03-29 14:35:29 -05:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb puma_config.rb: not needed anymore DB.disconnect call 2024-04-16 22:01:41 +00:00
rainbows_config.rb mostly finished port to ruby3 2022-08-10 14:31:36 -05:00
Rakefile fix up file uris/uri path code 2024-09-15 14:18:35 -05:00
README.md Update the README 2024-08-15 19:08:38 +01: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

Make a copy of config.yml.template in the root directory, and rename it to config.yml. Then:

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