Skip to content

Commit

Permalink
add boot script
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlindsey committed Nov 7, 2024
1 parent dbef2b9 commit a2c741f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .devcontainer/boot.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

echo "Updating RubyGems..."
gem update --system -N

echo "Installing dependencies..."
bundle install
yarn install

echo "Copying database.yml..."
cp -n config/database.yml.example config/database.yml

echo "Creating database..."
bin/rails db:prepare

echo "Done!"

0 comments on commit a2c741f

Please sign in to comment.