Neocities.org - the web site. Yep, the backend is open source!
Find a file
2020-01-27 18:56:43 -08:00
app Patch more missing thumbnail/screenshot change events, cache purges 2020-01-27 18:56:43 -08:00
ext clean up some old gunk 2019-09-21 02:17:13 -07:00
files sitemap: improvements, fixes, add tags 2019-10-09 15:13:42 -07:00
migrations whitelisting for blackbox 2019-12-18 20:43:04 -08:00
models Patch more missing thumbnail/screenshot change events, cache purges 2020-01-27 18:56:43 -08:00
public add latest ace editor (1.4.7) 2019-11-16 11:03:43 -08:00
sass update skeuocard to use davidsiaw branch 2019-10-24 12:41:06 -07:00
tests Move screenshots/thumbs when renaming user. 2020-01-27 01:53:54 -08:00
vagrant clean up some old gunk 2019-09-21 02:17:13 -07:00
views Fix for missing slash for editing files in dashboard 2020-01-27 22:33:29 +00:00
workers Array for screenshot worker, catch exceptions 2020-01-27 08:13:23 +00:00
.gitignore sitemap generation 2019-10-08 20:50:32 -07:00
.travis.yml install bundler before install on travis 2019-01-19 23:29:50 -08:00
app.rb switch to captcha v2 api 2018-02-21 09:29:00 -08:00
app_helpers.rb add safety check for which site to save to to make sure user hasn't switched users in another tab 2018-03-02 23:20:46 -08:00
code-of-conduct.txt Update code-of-conduct.txt 2016-02-08 12:45:41 -08:00
config.ru update dav4rack, tempblock some methods until we can cover them properly 2019-09-03 00:16:41 -07:00
config.yml.template support for multiple cache purge ips in stats parsing 2017-06-16 22:21:58 -07:00
config.yml.travis Update tests for screenshot worker url array 2020-01-27 01:22:57 -08:00
environment.rb clean up some old gunk 2019-09-21 02:17:13 -07:00
Gemfile Bump puma from 3.12.1 to 3.12.2 2019-12-06 02:33:28 +00:00
Gemfile.lock Bump rack from 2.0.7 to 2.0.8 2019-12-19 03:18:46 +00:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb Set to lower thread pool size to handle heavy load better 2019-09-20 01:39:33 +00:00
rainbows_config.rb referencing stripe from its repo breaks rubygems install for some reason 2015-03-25 20:03:28 +00:00
Rakefile sitemap: off by one like a boss 2019-10-10 14:57:46 -07:00
README.md Improve the Bad Dudes image 2019-09-11 15:09:52 -04:00
Vagrantfile Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07: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 (http://github.com/YOURUSERNAME/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