mirror of
https://github.com/mskatoni/ni-mail.git
synced 2026-08-29 12:07:24 +08:00
8 lines
149 B
Bash
8 lines
149 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
DB_PATH="/ni_mail.db"
|
|
export DATABASE_URL="sqlite:///"
|
|
|
|
exec python -m flask --app "app:create_app()" run --host=0.0.0.0 --port=""
|