This app helps FastSigns Durango track takeaways at it's various locations throughout town. It's built by the students at Durango Ruby School.
Heroku app location: http://takeaways.herokuapp.com/
You can view project notifications in Durango Ruby School's Hipchat.
- Postgresql
cp config/database-example.yml config/database.yml
- Make any changes in the database.yml to have it work with your system.
cp .env-example .env
- Make the appropriate environment variable changes if needed
rake db:setup
to set up your databaserake
to run the specs
The application depends on the following environment variables. These can be set in .env for development and test
SECRET_KEY_BASE= <Random string to used to generate session keys. See config/secrets.yml>
HONEYBADGER_API_KEY = Honeybadger api key
APP_DOMAIN=<domain of the application ie(lvh.me or bike2020.com)>
APP_PORT=<port that the application is running on, optional>
- Make a new branch (
git checkout -b <branch name>
) git status
to make sure you're on a branch- Make your changes for this specific feature. You can do multiple commits.
- Push your branch to github (
git push origin <branch name>
) - Create a pull request