Neocities.org - the web site. Yep, the backend is open source!
Find a file
2016-12-21 07:18:18 -06:00
app prevent www. in domain names 2016-12-16 01:54:07 -06: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 Force unique constraint on username 2016-12-08 15:26:12 -06:00
models Raise bandwidth for free plan to 200GB 2016-12-21 07:18:18 -06: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 fixes for broken/flaky tests and remove unused template 2016-11-22 00:59:31 -06:00
vagrant Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
views fixes for broken/flaky tests and remove unused template 2016-11-22 00:59:31 -06:00
workers Dedupe before taking screenshots 2016-12-12 06:33:40 +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 redirect to the Internet Archive for Geocities site paths before 404ing 2016-12-16 13:42:45 -06: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 Merge branch 'master' of github.com:neocities/neocities 2016-12-10 19:43:53 -06:00
config.yml.travis require url for redis init 2016-12-09 21:52:08 -08:00
environment.rb require url for redis init 2016-12-09 21:52:08 -08:00
Gemfile try new webdav, use remote service for initial site screenshots 2016-12-10 19:43:26 -06:00
Gemfile.lock try new webdav, use remote service for initial site screenshots 2016-12-10 19:43:26 -06: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 reduce sandboxing time, set to single threaded as an experiment 2016-12-12 06:34:19 +00: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