Neocities.org - the web site. Yep, the backend is open source!
Find a file
2017-02-02 15:25:49 -08:00
app Consolidate file uploads into a single call 2017-02-02 15:25:49 -08:00
ext experiment with comma separated large view numbers rather than shortened 2017-01-09 03:01:14 -06:00
files new image screenshot system for #194 2015-11-15 03:22:13 -08:00
migrations experimental support for site tipping integration via paypal or bitcoin 2016-12-25 13:40:35 -06:00
models Whitelist webp images 2017-01-29 16:49:47 -08:00
public Numerous small copy changes here and there, blog feed on front page, added a press article 2017-01-17 00:35:31 -08:00
sass padding fix for front header 2017-01-10 13:10:14 -06:00
tests Fix for cache purging for subdir default indexes 2017-01-29 00:00:25 -08:00
vagrant Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
views Consolidate file uploads into a single call 2017-02-02 15:25:49 -08:00
workers Merge branch 'master' of github.com:neocities/neocities 2017-01-15 15:08:08 -08:00
.gitignore better tos issue reporting, and a threshold for being considered abusive in 2016-11-27 19:21:42 -06:00
.travis.yml deprecate ruby 2.2.3 support 2016-05-24 22:16:04 -04:00
app.rb SameSite=Lax for cookies, DENY for X-Frame-Options 2017-01-25 04:52:20 +00:00
app_helpers.rb enforce signout of deleted accounts 2016-12-29 15:55:44 -06:00
code-of-conduct.txt Update code-of-conduct.txt 2016-02-08 12:45:41 -08:00
config.ru Fix for supporter file type uploads via WebDAV 2017-01-19 00:34:52 -08:00
config.yml.template Switch to test keys for recaptcha 2017-01-24 23:40:28 -08:00
config.yml.travis mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
environment.rb optimize screenshots and thumbnails, slight thumbnail quality reduction 2016-12-29 17:09:01 -06:00
Gemfile Numerous small copy changes here and there, blog feed on front page, added a press article 2017-01-17 00:35:31 -08:00
Gemfile.lock Numerous small copy changes here and there, blog feed on front page, added a press article 2017-01-17 00:35:31 -08:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb reduce sandboxing time, set to single threaded as an experiment 2016-12-12 06:34:19 +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 mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
README.md Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07: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
cd /vagrant
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