- Install and setup Git
- Install
docker
,docker-machine
(if on OS X), anddocker-compose
. - Run
./bin/bootstrap_docker.sh
and follow its instructions. You can log in with the user[email protected]
and passwordpassword
To run standard commands in Docker, prefix them with docker-compose run web
. For example:
- To run the test suite, run
docker-compose run rake
- To launch the Rails console, run
docker-compose run rails c
commonplace-staging.herokuapp.com is the URL for staging hosted on Heroku (there are also personal stagings - they do not have Sunspot available).
Set the remote with git remote add staging [email protected]:commonplace-staging.git
Push to staging with git push -f staging
Push a branch to staging with git push -f staging branch-name:master
It's nice to have reasonable assurrance that you didn't bork something by making a simple change or git merge. That's why we <3 tests. Write them to conform to the spec before you start writing the feature, and write the feature to conform to the tests. Anything going into master should pass all test cases, and all new code should be tested to the hilt.