mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
8 lines
157 B
Bash
Executable File
8 lines
157 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
mkdir -p db
|
|
goose -dir migrations sqlite3 db/game.db up
|
|
|
|
exec ./lunar-tear --host "${LUNAR_HOST}" --http-port "${LUNAR_HTTP_PORT}"
|