On this repository lives what it used to power the backend and web landing page of Voolta. Voolta was an app that displayed different route activities nearby for people to get to know a city in a fun way, discovering unexpected places along the way.
For getting the web application running, follow the steps below:
- Install the right Ruby version:
rvm install ruby-1.9.3-p551
(RVM is a tool for managing different versions ofRuby
) - Fetch the required dependencies
bundle install
. Make sure you are running this command under the ruby version installed above. Check commandrvm use
for more information. - Run
pg_restore
command to restore thevoolta.dump
file into the database. Check the details of the database configuration located indatabase.yml
- Run
rails start
to run the application on development environment.
You will find access to the admin page at the endpoint /admin
for atomically managed the backend data records. For reviewing and managing the information related to a specific trip please refer to the /trips-admin
endpoint.