# Install Dependencies
pip install -r requirements/dev.txt
# Deploy
flask deploy
# Run
export FLASK_APP="app.py"
FLASK_ENV=development
flask run
docker build -t booking-service:latest .
docker run -p 5000:5000 booking-service:latest
docker run --name mysql -d -p 3306:3306 -e MYSQL_RANDOM_ROOT_PASSWORD=yes -e MYSQL_DATABASE=gooutsafe -e MYSQL_USER=gooutsafe -e MYSQL_PASSWORD=my-secret-pw mysql:8
Inside GoOutSafe run (it will automatically use the configuration in pyproject.toml):
pytest
If you want to see an interactive report run:
coverage html

