We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4693203 commit ec315f6Copy full SHA for ec315f6
.gitpod.yml
@@ -6,22 +6,20 @@ ports:
6
tasks:
7
- init: >
8
export CHROME_BIN=/usr/bin/chromium-browser &&
9
- # gem install bundler &&
10
- # bundle config set without 'production' &&
11
- # bundle install &&
+ gem install bundler &&
+ bundle config set without 'production' &&
+ bundle install &&
12
cp config/database.yml.gitpod config/database.yml &&
13
mysql -e "SET @@global.sql_mode=(SELECT REPLACE(@@global.sql_mode, 'ONLY_FULL_GROUP_BY', ''));" &&
14
mysql -e "CREATE DATABASE plots;" &&
15
cp db/schema.rb.example db/schema.rb
16
17
- gem install bundler
+ rake db:setup
18
19
- bundle config set without 'production'
+ sleep 10
20
21
bundle install
22
23
- rake db:setup
24
-
25
yarn install
26
27
rails g webpacker:install && rails g webpacker:install:react && rails g react:install
0 commit comments