Neocities.org - the web site. Yep, the backend is open source!
Find a file
2016-08-18 12:45:10 -07:00
app Fix for password reset validation 2016-08-10 13:15:24 -07: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 improvements to admin interface 2016-07-20 13:33:46 -07:00
models add scss 2016-08-18 12:45:10 -07: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 finish merge on cleaned up news feed 2016-07-29 14:10:29 -07:00
vagrant Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
views fix for admin browsing 2016-08-10 10:50:44 -07:00
workers ScreenshotWorker: garbage collection improvements 2016-08-18 00:14:32 -07: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 use TempfileReaper to hopefully clean up RackMultipart turds 2016-08-16 11:56:47 -07:00
app_helpers.rb parse urls for comments 2016-07-29 19:55:43 -07: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 Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
config.yml.travis checkin of initial letsencrypt code 2016-06-16 01:42:16 -07:00
environment.rb simplify letsencrypt code for now, merge into single async worker 2016-06-18 12:46:00 -07: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 config for puma 2015-10-20 11:24:00 -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 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