From 0f961e69d9512426a37183669171563af7421828 Mon Sep 17 00:00:00 2001 From: Olia Kremmyda Date: Fri, 8 Dec 2023 09:42:31 +0200 Subject: [PATCH] Add bundle install --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 93b0708..bfdbdd0 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,7 +5,7 @@ }, "waitFor": "onCreateCommand", "updateContentCommand": "gem install bundler rails", - "postCreateCommand": "", + "postCreateCommand": "cd projects/railsgirls; bundle install; rails db:migrate", "customizations": { "vscode": { "extensions": [ @@ -22,4 +22,4 @@ "forwardPorts": [ 3000 ] -} \ No newline at end of file +}