Neocities.org - the web site. Yep, the backend is open source!
Find a file
2017-03-22 11:39:06 -07:00
app tipping: only show tipping sites with paypal/btc input 2017-02-25 10:19:14 -08:00
ext Fixes for Ruby 2.4 support 2017-03-22 11:39:06 -07:00
files new image screenshot system for #194 2015-11-15 03:22:13 -08:00
migrations Fixes for Ruby 2.4 support 2017-03-22 11:39:06 -07:00
models Remove extraneous binding.pry 2017-03-22 11:34:31 -07:00
public Update gateway_error.html 2017-02-28 15:14:28 -06:00
sass Clean up CSS for comment contents, add word-break 2017-03-18 11:53:50 -07:00
tests Missing xml file for blog feed test 2017-02-07 22:47:35 -08:00
vagrant Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
views A few copy fixes for the compare page 2017-03-18 18:13:48 -07:00
workers Temporarily disable thumbnail optimization 2017-03-16 03:50:49 +00: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 Initial CSP header idea - enable tipping site-wide 2017-02-11 15:39:11 -08:00
app_helpers.rb DRY up flash display code, fix colors for success/error 2017-03-03 20:36:58 -08: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 Fixes for Ruby 2.4 support 2017-03-22 11:39:06 -07:00
Gemfile Fixes for Ruby 2.4 support 2017-03-22 11:39:06 -07:00
Gemfile.lock Fixes for Ruby 2.4 support 2017-03-22 11:39:06 -07: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 nginx mapfile for subdomains to domains - switch to contact form from 2017-02-28 14:50:21 -08: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