Open Source repo for https://www.improvcoaches.com
I originally built the site as a resource for improv students and coaches while I was involved in the New York City community. While I can still maintain the site's public deployment, development on it has slowed and as such I've decided to open source it. This was also a "Learn Rails!" project for myself, so please keep that in mind as you judge my code. :)
- Docker
- Run
docker build . -t improvcoaches
- Run
docker-compose run web rake db:create
- Run
docker-compose run web rake db:seed
- Run
docker-compose up
. Server is available at localhost:300 - Access the Rails consolt with
docker-compose run web rails c
- Open a console.
User.first.update_attributes(is_admin: true)
to set up that account as the admin of your local site.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request