TJTS5901 - Continuous Software Engineering 2022
This is a template and reference implementation for TJTS5901 Continuous Software Development https://moodle.jyu.fi/course/view.php?id=16452
https://pawment2be.azurewebsites.net/
Deployement address:Running application locally
Flask application is located on dogmap
module, define it in FLASK_APP
environment variable. Next define development mode on using FLASK_ENV
. And finally run flask
application with run
parameter.
On bash:
export FLASK_APP=dogmap
export FLASK_ENV=development
flask run
CMD:
set FLASK_APP=dogmap
set FLASK_ENV=development
flask run
Powershell:
$env:FLASK_APP = "dogmap"
$env:FLASK_ENV = "development"
flask run
Building and running the docker image
docker build --pull --rm -f "Dockerfile" -t dogmap "."
docker run --rm -it dogmap
Reporting issues and bugs
To report issues, please use gitlab issues. Please use correct labels for bugs or security issues.