diff options
Diffstat (limited to '.devcontainer/post-create.sh')
-rwxr-xr-x | .devcontainer/post-create.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.devcontainer/post-create.sh b/.devcontainer/post-create.sh index 02f488f12..7c3852e7e 100755 --- a/.devcontainer/post-create.sh +++ b/.devcontainer/post-create.sh @@ -14,6 +14,9 @@ git checkout -- Gemfile.lock # [re]create, migrate, and seed the test database RAILS_ENV=test ./bin/rails db:setup +# [re]create, migrate, and seed the development database +RAILS_ENV=development ./bin/rails db:setup + # Precompile assets for development RAILS_ENV=development ./bin/rails assets:precompile |