Neocities.org - the web site. Yep, the backend is open source!
Find a file
2016-10-18 15:26:39 -05:00
app Set plan_ended to false on paypal sub, and redirect properly 2016-10-18 15:26:39 -05:00
ext fix for comma separated with bignum 2016-05-23 17:23:55 -04:00
files new image screenshot system for #194 2015-11-15 03:22:13 -08:00
migrations Detect and remove dead custom domains 2016-09-17 10:02:51 -07:00
models major refactor of supporter structure 2016-10-18 12:47:58 -05:00
public deduping code and fixes for letsencrypt 2016-06-18 21:25:41 +00:00
sass more site design fixes 2016-08-03 18:00:26 -07:00
tests major refactor of supporter structure 2016-10-18 12:47:58 -05:00
vagrant Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
views major refactor of supporter structure 2016-10-18 12:47:58 -05:00
workers skim the cache purge timeout 2016-10-05 22:22:10 -05:00
.gitignore checkin of initial letsencrypt code 2016-06-16 01:42:16 -07:00
.travis.yml deprecate ruby 2.2.3 support 2016-05-24 22:16:04 -04:00
app.rb major refactor of supporter structure 2016-10-18 12:47:58 -05:00
app_helpers.rb major refactor of supporter structure 2016-10-18 12:47:58 -05:00
code-of-conduct.txt Update code-of-conduct.txt 2016-02-08 12:45:41 -08:00
config.ru remove rainbows code 2015-11-15 11:25:40 +00:00
config.yml.template Provide proxy ips locally vs through DNS system 2016-09-15 01:22:32 +00:00
config.yml.travis proxy ips to match tests, prevent fail for no proxies 2016-09-30 01:45:15 -05:00
environment.rb 30 seconds wait for screenshot (from 1 min) 2016-09-20 21:00:53 +00:00
Gemfile murder the json-jwt nightmare dependency 2016-08-10 14:58:26 -07:00
Gemfile.lock murder the json-jwt nightmare dependency 2016-08-10 14:58:26 -07:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb revert to auto processor count for puma/rainbows 2016-09-20 21:03:56 +00:00
rainbows_config.rb revert to auto processor count for puma/rainbows 2016-09-20 21:03:56 +00:00
Rakefile purge_tmp_terds: a sewage system for /tmp 2016-08-16 12:14:56 -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