12 lines
No EOL
332 B
Bash
Executable file
12 lines
No EOL
332 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# You should use this if you want to run on bare-metal and not in a container.
|
|
|
|
# These environment variables should be echoed in the docker-compose.yml
|
|
export FLASK_APP=$(pwd)/uwume
|
|
export FLASK_ENV=development
|
|
export FLASK_RUN_HOST=0.0.0.0
|
|
export FLASK_RUN_PORT=4444
|
|
|
|
# Actually run the flask app
|
|
pipenv run flask run |