Neocities.org - the web site. Yep, the backend is open source!
Find a file
2019-03-11 21:46:57 +01:00
app Merge branch 'site_file_rename' 2019-02-26 09:38:14 -08: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 Merge branch 'site_file_rename' 2019-02-26 09:38:14 -08:00
public Add catbus-index image 2017-06-23 13:44:42 -07:00
sass reduce front page stats font size 2019-01-23 00:43:52 -08:00
tests Merge branch 'site_file_rename' 2019-02-26 09:38:14 -08:00
vagrant Updated provision script with auto cd and blacklist creation 2019-03-11 21:46:34 +01:00
views Merge branch 'site_file_rename' 2019-02-26 09:38:14 -08: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 Reduce site record lookups needed for auth, webdav 2017-04-02 12:25:34 -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 silence money gem warnings 2019-01-19 23:11:14 -08:00
Gemfile New version of webmock to fix error with ruby 2.6 2019-01-19 03:34:54 -08:00
Gemfile.lock Fix merge conflict 2019-01-19 03:34:00 -08:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb Move puma back to multi-threaded mode 2018-12-20 05:07:25 +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 bugfixes and reforms to block filters 2019-02-03 21:54:01 -08:00
README.md Updated README 2019-03-11 21:46:57 +01: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