mirror of
https://git.wownero.com/lza_menace/neroswap.git
synced 2024-08-15 01:03:24 +00:00
8 lines
156 B
Bash
Executable file
8 lines
156 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source .venv/bin/activate
|
|
export FLASK_APP=app/app.py
|
|
export FLASK_SECRETS=config.py
|
|
export FLASK_DEBUG=0
|
|
export FLASK_ENV=production
|
|
flask $@
|