Neocities.org - the web site. Yep, the backend is open source!
Find a file
Russell Dempsey 3006486b22
docs(readme): use github fork link
The fork button at the top of github is https://github.com/OWNER/REPO/fork. 

Using this link makes it slightly easier for newer contributors to do the right thing
2022-09-29 11:40:22 -07:00
app replace recaptch with hcaptcha 2021-12-03 12:04:00 -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 api key index 2020-11-18 22:00:09 -06:00
models prevent creation of empty path with rename 2022-06-22 18:29:58 -05:00
public update ace editor to 1.4.12 2021-02-08 17:59:39 -07:00
sass replace recaptch with hcaptcha 2021-12-03 12:04:00 -06:00
tests prevent creation of empty path with rename 2022-06-22 18:29:58 -05:00
vagrant clean up some old gunk 2019-09-21 02:17:13 -07:00
views fix press url 2022-05-05 12:30:02 -05:00
workers manual review for supporter violations 2022-05-10 00:18:16 +00:00
.gitignore sitemap generation 2019-10-08 20:50:32 -07:00
.travis.yml install bundler before install on travis 2019-01-19 23:29:50 -08:00
app.rb you forgot west hollywood kyle 2022-07-18 18:51:31 +03:00
app_helpers.rb No session ban 2022-05-10 00:20:58 +00: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 replace recaptch with hcaptcha 2021-12-03 12:04:00 -06:00
config.yml.travis replace recaptch with hcaptcha 2021-12-03 12:04:00 -06:00
environment.rb fixes for hcaptcha, add to dmca form 2020-11-26 01:45:23 -06:00
Gemfile Merge pull request #396 from neocities/dependabot/bundler/sinatra-2.2.0 2022-06-22 18:33:09 -05:00
Gemfile.lock Merge pull request #393 from neocities/dependabot/bundler/puma-5.6.4 2022-06-22 18:33:17 -05: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 referencing stripe from its repo breaks rubygems install for some reason 2015-03-25 20:03:28 +00:00
Rakefile Fix hyphen on normal screenshot urls, remove dupe code 2022-08-10 18:56:01 +00:00
README.md docs(readme): use github fork link 2022-09-29 11:40:22 -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
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