Skip to content

Commit ec315f6

Browse files
committed
sleep for 10secs and rerun bundle install
1 parent 4693203 commit ec315f6

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.gitpod.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,20 @@ ports:
66
tasks:
77
- init: >
88
export CHROME_BIN=/usr/bin/chromium-browser &&
9-
# gem install bundler &&
10-
# bundle config set without 'production' &&
11-
# bundle install &&
9+
gem install bundler &&
10+
bundle config set without 'production' &&
11+
bundle install &&
1212
cp config/database.yml.gitpod config/database.yml &&
1313
mysql -e "SET @@global.sql_mode=(SELECT REPLACE(@@global.sql_mode, 'ONLY_FULL_GROUP_BY', ''));" &&
1414
mysql -e "CREATE DATABASE plots;" &&
1515
cp db/schema.rb.example db/schema.rb
1616
17-
gem install bundler
17+
rake db:setup
1818
19-
bundle config set without 'production'
19+
sleep 10
2020
2121
bundle install
2222
23-
rake db:setup
24-
2523
yarn install
2624
2725
rails g webpacker:install && rails g webpacker:install:react && rails g react:install

0 commit comments

Comments
 (0)