This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
uwu-me/start_app.sh

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