Neocities.org - the web site. Yep, the backend is open source!
Find a file
2023-11-09 14:55:48 -06:00
.github/workflows Fix failing dependencies installation on GitHub Actions CI 2023-02-05 00:08:17 +03:00
app first pass at phone validation 2023-11-09 14:55:48 -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 first pass at phone validation 2023-11-09 14:55:48 -06:00
models first pass at phone validation 2023-11-09 14:55:48 -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 Merge pull request #448 from talklittle/fix-education-tests 2023-07-19 16:25:01 -05:00
vagrant Fix dependencies installation on Vagrant 2023-04-30 08:21:19 -07:00
views first pass at phone validation 2023-11-09 14:55:48 -06:00
workers Better error handling for screenshot and thumbnail workers, hacky fix for lets encrypt cert issue that's temporary 2023-07-19 21:17:48 +00:00
.gitignore sitemap generation 2019-10-08 20:50:32 -07:00
app.rb first pass at phone validation 2023-11-09 14:55:48 -06: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 first pass at phone validation 2023-11-09 14:55:48 -06:00
Gemfile first pass at phone validation 2023-11-09 14:55:48 -06:00
Gemfile.lock first pass at phone validation 2023-11-09 14:55:48 -06:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
puma_config.rb upgrade to latest puma 2023-08-19 15:41:32 -05:00
rainbows_config.rb mostly finished port to ruby3 2022-08-10 14:31:36 -05:00
Rakefile Better error handling for screenshot and thumbnail workers, hacky fix for lets encrypt cert issue that's temporary 2023-07-19 21:17:48 +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 Upgrade Vagrant to bionic (was trusty) 2021-08-12 18:50:22 -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