Neocities.org - the web site. Yep, the backend is open source!
Find a file
2019-09-21 01:26:42 -07:00
app Update gems, modernize test stack, fix flaky tests 2019-09-21 01:19:47 -07:00
ext Refactor IPFS archiving to support cidv1-base32 2019-01-19 03:36:07 -08:00
files new image screenshot system for #194 2015-11-15 03:22:13 -08:00
migrations add index for slow featured_at query 2019-01-26 22:45:29 +00:00
models Update gems, modernize test stack, fix flaky tests 2019-09-21 01:19:47 -07:00
public fix for profile comment editing 2019-06-28 15:08:22 -07:00
sass fix admin display for browse 2019-06-30 14:50:38 -07:00
tests Update gems, modernize test stack, fix flaky tests 2019-09-21 01:19:47 -07:00
vagrant Updated provision script with auto cd and blacklist creation 2019-03-11 21:46:34 +01:00
views index/404 pages scale for mobile devices 2019-09-19 18:46:50 -07:00
workers temp disable archive button, cleanups for new gems 2018-12-10 07:36:22 +00:00
.gitignore ignore banned email domains list 2018-12-20 05:08:45 +00:00
.travis.yml install bundler before install on travis 2019-01-19 23:29:50 -08:00
app.rb switch to captcha v2 api 2018-02-21 09:29:00 -08:00
app_helpers.rb add safety check for which site to save to to make sure user hasn't switched users in another tab 2018-03-02 23:20:46 -08:00
code-of-conduct.txt Update code-of-conduct.txt 2016-02-08 12:45:41 -08:00
config.ru update dav4rack, tempblock some methods until we can cover them properly 2019-09-03 00:16:41 -07:00
config.yml.template support for multiple cache purge ips in stats parsing 2017-06-16 22:21:58 -07:00
config.yml.travis support for multiple cache purge ips in stats parsing 2017-06-16 22:21:58 -07:00
environment.rb Update gems, modernize test stack, fix flaky tests 2019-09-21 01:19:47 -07:00
Gemfile remove poltergeist gem, no longer used 2019-09-21 01:26:42 -07:00
Gemfile.lock remove poltergeist gem, no longer used 2019-09-21 01:26:42 -07:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb Set to lower thread pool size to handle heavy load better 2019-09-20 01:39:33 +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 dumper task for ml image classification work 2019-07-02 13:46:39 -07:00
README.md Improve the Bad Dudes image 2019-09-11 15:09:52 -04: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
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