Refactor devcontainer configuration: update network settings and container name for improved development environment consistency.
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
qpismont 2025-03-31 19:46:54 +00:00
parent dabfc43678
commit 3ea22fd39d

11
scripts/migrate.sh Normal file
View file

@ -0,0 +1,11 @@
#!/bin/bash
#Check if the migrate command is available
if ! command -v migrate &> /dev/null; then
echo "migrate could not be found"
exit 1
fi
#Execute migrate up
migrate -path ./migrations -database "$DATABASE_URL" -verbose up