Neocities.org - the web site. Yep, the backend is open source!
Find a file
2014-12-03 08:29:01 -08:00
app refactor app.rb blob to partition routes into files 2014-12-03 08:29:01 -08:00
domains ignores and pre-added folders for travis 2014-04-12 14:15:16 -07:00
ext services for proxy data 2014-11-20 04:44:44 -08:00
files Initial mockup/code for new index with large sections. 2014-04-26 10:24:56 -05:00
migrations start tracking files in our database 2014-11-03 17:36:20 -08:00
models multiple site -> supporters 2014-12-03 02:50:22 -08:00
public a few screenshots for the front 2014-11-29 22:01:48 -08:00
sass Fix follow button for Safari 2014-11-22 03:41:09 -06:00
tests multiple site -> supporters 2014-12-03 02:50:22 -08:00
views refactor app.rb blob to partition routes into files 2014-12-03 08:29:01 -08:00
workers richer news feed, change screenshots/thumbnails to use retina quality 2014-09-17 20:13:14 -07:00
.gitignore fix fields for validate 2014-10-24 16:43:24 -07:00
.travis.yml fixes for follows, initial follow event code 2014-05-08 08:47:28 -07:00
app.rb refactor app.rb blob to partition routes into files 2014-12-03 08:29:01 -08:00
app_helpers.rb refactor app.rb blob to partition routes into files 2014-12-03 08:29:01 -08:00
config.ru potential fix for ClientShutdown exceptions 2014-12-03 07:57:58 -08:00
config.yml.template services for proxy data 2014-11-20 04:44:44 -08:00
config.yml.travis try to fix travis 2014-11-17 23:20:34 -08:00
environment.rb Cryptographically scramble IPs stored by Neocities 2014-11-07 00:41:10 -08:00
Gemfile Cryptographically scramble IPs stored by Neocities 2014-11-07 00:41:10 -08:00
Gemfile.lock Cryptographically scramble IPs stored by Neocities 2014-11-07 00:41:10 -08:00
LICENSE.txt Add BSD 2-clause license 2013-06-22 18:59:38 -07:00
rainbows_config.rb updates to config 2013-07-07 23:13:54 +02:00
Rakefile Cryptographically scramble IPs stored by Neocities 2014-11-07 00:41:10 -08:00
README.md remove phantomjs_url as its no longer used 2014-07-03 19:08:03 -05:00

NeoCities.org

Build Status

The web site for NeoCities! It's open source. Want a feature on the site? Send a pull request!

Installation (OSX)

Install homebrew:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

Install deps:

$ brew install redis postgresql phantomjs libmagic imagemagick

Fork the repository on Github. Clone the forked repo to your local machine: git clone git@github.com:YOURUSERNAME/neocities.git Install deps:

$ cd neocities
$ gem install bundler
$ bundle install

Create postgres databases:

createdb neocities_test
createdb neocities_dev

Copy config.yml.template to config.yml.

Run the tests to see if they work:

  bundle exec rake test

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