CS 169 Group Project, Spring 2016. An application to manage the assignment and management of work shifts in the BSC (Berkeley Student Cooperative) system.
Pivotal Tracker:
https://www.pivotaltracker.com/projects/1545105
##Resources
##Heroku
- Site: Home page here
- Adding your remote:
heroku git:remote -a coop-workshifts
- Make sure you're logged in
heroku login
on cloud9 and are a contributer to the app (Alex should have added you) - Checking the logs:
heroku logs --tail
- Running commands on Heroku:
heroku run ...
- Migrating heroku schema (after pushing actual rails migration file):
heroku run bundle exec rake db:migrate
##Styling
- Bootstrap-sass
- Link to original repo
- Do not use *= require in Sass or your other stylesheets will not be able to access the Bootstrap mixins or variables.__
##Reminders
- Ideally pull before pushing (
git pull origin master
) bundle install
after pulling