File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,9 @@ Install curl
3838
3939 sudo apt-get install curl
4040
41- Install rvm
41+ Install rvm (or your favorite ruby version manager)
4242
4343 \curl -sSL https://get.rvm.io | bash
44-
4544 source ~/.rvm/scripts/rvm
4645
4746Install ruby 2.3.1
@@ -50,13 +49,14 @@ Install ruby 2.3.1
5049
5150 rvm use 2.3.1
5251
53- Install rails 4.2.5
52+ Install rails 4.2.7
5453
55- gem install rails -v 4.2.5
54+ gem install rails -v 4.2.7
5655
5756Install necessary libraries
5857
5958 sudo apt-get install imagemagick libmagickwand-dev
59+ sudo apt-get install libpq-dev
6060
6161Clone the code
6262
@@ -65,19 +65,21 @@ Clone the code
6565Install gems
6666
6767 bundle install
68-
68+
6969Create database
7070
7171 rake db:create
7272
7373Run initial database migrations
7474
7575 rake db:migrate
76+ rake data_migrations:create_default_billing_plans
77+ rake db:seed
7678
7779Finally, run the server with
7880
7981 rails server
80-
82+
8183You should now see a copy of the site running locally at http://localhost:3000/!
8284
8385== Running the notebook stack locally with Docker
You can’t perform that action at this time.
0 commit comments