blob: 76373218b7061531808c462f3fbaa15c01f0bbe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[](https://travis-ci.org/cakeside/cakeside)
## Environment Setup
Install [rbenv](https://github.com/sstephenson/rbenv#installation)
Install required gems
bundle install
Setup database (set password to postgres)
cp config/database.yml.example config/database.yml
rake db:create:all
rake db:migrate
Start server
bundle exec foreman start
## Deployment
bundle exec cap production deploy
|