Neocities.org - the web site. Yep, the backend is open source!
Find a file
joppiesaus 4e74d048e6 Fixes #215
Fixed being able to follow yourself; unfollowing yourself is still
possible, if it may cause problems in the future.
2016-08-10 19:29:40 +02:00
app Improvements & fixes for vagrant staging 2016-08-09 20:04:57 -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 Fixes #215 2016-08-10 19:29:40 +02: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 Merge pull request #222 from DrEvilBrain/patch-1 2016-08-05 10:47:50 -07:00
workers Comment for how to delete scheduler jobs 2016-07-03 02:11:16 +00: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 Set email validation grandfathering for May 16th. All new sites will need to validate email. 2016-05-14 23:15:13 -04: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 parse urls for comments 2016-07-29 19:55:43 -07:00
Gemfile.lock parse urls for comments 2016-07-29 19:55:43 -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 Script to periodically renew certs (run with cronjob) 2016-06-28 03:50:03 +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