Timecardとはクリエイターが好きな時に好きなだけ働ける環境をサポートする仕組みです。
- プロジェクト機能
- Github Issueとの同期
- Issue単位の作業時間の記録
$ git clone git@github.com:timecard/timecard-rails.git
$ cd timecard-rails/
$ bundle install
$ cp config/database.yml.sample config/database.yml
$ rake db:setup
$ rake assets:precompile RAILS_ENV=production
$ vi config/settings/production.yml # setup Client ID and Client Secret of GitHub and Ruffnote
(callback URL is project root ex: http:/yoursite.example.com/)
https://github.com/settings/applications, https://ruffnote.com/oauth/applications
https://github.com/railsconfig/rails_config
or
$ git clone git@github.com:timecard/timecard-rails.git
$ cd timecard-rails/
$ heroku create (APP_NAME)
$ heroku addons:add heroku-postgresql
$ heroku config:set HEROKU=true "Settings.services.github.client_id"=CLIENT_ID "Settings.services.github.client_secret"=CLIENT_SECRET "Settings.services.ruffnote.key"=KEY "Settings.services.ruffnote.secret"=SECRET
$ git push heroku master
$ heroku run rake db:migrate
$ heroku open
1. Installing Fig: http://www.fig.sh/install.html
$ sudo pip install -U fig
$ fig up -d web
$ fig run --rm web bundle exec rake db:setup
$ fig up --no-recreate test
$ fig kill
$ fig rm
- Ruby 2.1.0+