Rails Girls Hamburg - attendee application and coach registration
Do not mess with the production branch unless you know what you are doing - it is deployed continously to live!
- In order to send emails, set the environment variables
EMAIL_PASSWORD
to our email password - Set the environment variable
MY_DOMAIN
to the domain where the application is run - Create an admin account on the console:
AdminAccount.create(username: "foo", password_sha1: Digest::SHA1.hexdigest("bar"))
- Find more information in the docs folder (you can use
rdoc
to create a local version of the documentation, or browse files on github)
We deploy continously:
- master branch is continously deployed to our staging environment https://damp-shelf-5878.herokuapp.com/
- production branch is continously deployed to our live environment https://railsgirls-hamburg.herokuapp.com
To deploy the current state of master to live:
- merge master into production
If you cannot deploy the current state of master to production (e.g. master build is not passing or the code is not sufficiently tested) and you have to deploy a critical fix to live:
- commit into the production branch to deploy your hotfix
- backmerge production into master