Neocities.org - the web site. Yep, the backend is open source!
Find a file
2017-03-30 15:38:01 -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 fix for excluded site ids in news feed 2017-03-27 14:08:11 -07:00
public Funner gateway error message 2017-03-22 17:47:33 -07:00
sass Clean up CSS for comment contents, add word-break 2017-03-18 11:53:50 -07:00
tests Switch to directory sharding model for site storage 2017-03-22 17:45:01 -07:00
vagrant Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
views 1GB free space - 20GB supporter space 2017-03-27 11:34:28 -07:00
workers remove unused requires in workers 2017-03-29 12:57:14 -07: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 Better detection of # of cores available 2017-03-22 17:47:07 -07:00
Gemfile.lock Update to tz gem 2017-03-30 15:38:01 -07:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb Better detection of # of cores available 2017-03-22 17:47:07 -07:00
rainbows_config.rb referencing stripe from its repo breaks rubygems install for some reason 2015-03-25 20:03:28 +00:00
Rakefile Switch to directory sharding model for site storage 2017-03-22 17:45:01 -07: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