9 lines
188 B
Bash
9 lines
188 B
Bash
|
#!/usr/bin/env sh
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
set -e
|
||
|
|
||
|
./wait-for-it.sh migration_runner:8881 --strict -- echo "Migrations were applied"
|
||
|
|
||
|
RUST_BACKTRACE=1 RUST_LOG=info ./bin/gitea_pages "$1"
|