Neocities.org - the web site. Yep, the backend is open source!
Find a file
2022-12-28 09:05:21 -06:00
.github/workflows try ubuntu 22.04 with github actions 2022-11-12 14:46:49 -06:00
app fix site unblocking 2022-11-12 13:07:49 -06:00
ext clean up some old gunk 2019-09-21 02:17:13 -07:00
files sitemap: improvements, fixes, add tags 2019-10-09 15:13:42 -07:00
migrations fix for gemfile, merge conflicts, test fixes for ruby 3 2022-11-05 12:46:43 -05:00
models add map ext for .css.map files 2022-12-07 14:14:07 -06:00
public Merge pull request #414 from dimdenGD/patch-4 2022-11-12 13:15:47 -06:00
sass replace recaptch with hcaptcha 2021-12-03 12:04:00 -06:00
tests add missing file for test 2022-12-28 09:05:21 -06:00
vagrant clean up some old gunk 2019-09-21 02:17:13 -07:00
views put canonical url link on all pages 2022-11-16 15:47:40 -06:00
workers purge cache for stripped .html files 2022-12-15 10:21:55 -06:00
.gitignore sitemap generation 2019-10-08 20:50:32 -07:00
app.rb you forgot west hollywood kyle 2022-07-18 18:51:31 +03:00
app_helpers.rb Merge branch 'github-actions' of https://github.com/talklittle/neocities into talklittle-github-actions 2022-11-12 13:51:51 -06: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.ci Merge branch 'github-actions' of https://github.com/talklittle/neocities into talklittle-github-actions 2022-11-12 13:51:51 -06:00
config.yml.template replace recaptch with hcaptcha 2021-12-03 12:04:00 -06:00
environment.rb Merge branch 'github-actions' of https://github.com/talklittle/neocities into talklittle-github-actions 2022-11-12 13:51:51 -06:00
Gemfile replace coveralls with coveralls_reborn 2022-11-12 14:55:01 -06:00
Gemfile.lock Bump sinatra from 3.0.2 to 3.0.4 2022-11-30 21:47:54 +00:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb No threading for the moment to address bugs, set CPU manually 2022-05-10 00:19:19 +00:00
rainbows_config.rb mostly finished port to ruby3 2022-08-10 14:31:36 -05:00
Rakefile Fix for banned ips update 2022-12-03 22:34:13 +00:00
README.md Merge branch 'github-actions' of https://github.com/talklittle/neocities into talklittle-github-actions 2022-11-12 13:51:51 -06: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 (https://github.com/neocities/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