This is a platform to plan co-created events. It was originally created for Urban Burn Stockholm in 2016 and was then used for The Borderland in 2016. It's being continuously and sporadically developed by a rag-tag team and will probably always be in beta. You can see it in action here: http://dreams.theborderland.se/
Install ruby 2.3.0 (or any ruby will probably work).
gem install bundler # if needed
bundle install
bundle exec rake db:migrate
To get all the deps and the database set up properly. To start the server:
bundle exec rails s
Now rails will listen at localhost:3000
for your requests.
Go to camps/new
to create a new camp and to camps
to see a list of camps.
Run them with:
bundle exec rspec spec
Currently sqlite is used as database. We will stick to this in development but set up postgres in production. Install sqlite with your favourite package manager and you should be up and running right away.
In development mode mailcatcher is configured to catch emails locally for easier testing.
Ticket ids are imported from a single column csv file of IDs, which is located in db/borderland_codes.csv Rake task is in lib/tasks/import.rake and is run with "bundle exec rake import"
Users and creations can be administrated with Active Admin. After install, run: bundle exec rake db:migrate bundle exec rake db:seed
Before final version, change "camps" to creations or dreams.