-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor changes to get migrations to run
- Loading branch information
Test
committed
Sep 13, 2024
1 parent
7befc38
commit 240a38f
Showing
4 changed files
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.5-alpha | ||
1.0.6-alpha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
echo "Starting entrypoint.sh" | ||
export REDIS_URL=redis://redis:6379/1 | ||
|
||
export SECRET_KEY_BASE=$(bin/rails secret) | ||
|
||
rm -f /app/tmp/pids/server.pid | ||
|
||
echo "Running bundle exec rake assets:precompile" | ||
bundle exec rake assets:precompile | ||
|
||
echo "Running bundle exec rails db:migrate" | ||
bundle exec rails db:migrate | ||
|
||
echo "Executing final command: $@" | ||
exec "$@" |