Neocities.org - the web site. Yep, the backend is open source!
Find a file
2017-01-11 17:16:40 -06:00
app mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
ext experiment with comma separated large view numbers rather than shortened 2017-01-09 03:01:14 -06:00
files new image screenshot system for #194 2015-11-15 03:22:13 -08:00
migrations experimental support for site tipping integration via paypal or bitcoin 2016-12-25 13:40:35 -06:00
models mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
public optimize site images so dumb optimizer check scripts STFU 2017-01-10 19:38:50 -06:00
sass padding fix for front header 2017-01-10 13:10:14 -06:00
tests mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
vagrant Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -07:00
views use usernames for event likes popup 2017-01-09 01:34:05 -06:00
workers mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06: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 fortify cookie security - samesite, secure, explicit httponly 2017-01-10 16:43:14 -06:00
app_helpers.rb enforce signout of deleted accounts 2016-12-29 15:55:44 -06:00
code-of-conduct.txt Update code-of-conduct.txt 2016-02-08 12:45:41 -08:00
config.ru follow redirects 2017-01-05 16:01:35 -06:00
config.yml.template mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
config.yml.travis mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
environment.rb optimize screenshots and thumbnails, slight thumbnail quality reduction 2016-12-29 17:09:01 -06:00
Gemfile mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06:00
Gemfile.lock mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -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 mechanism to report spam ips to stopforumspam 2017-01-11 17:16:40 -06: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