44e4e4eb42
introduce admin area first poc for connecting the authentik api Co-authored-by: Philipp Rothmann <philipprothmann@posteo.de> Reviewed-on: #2
17 lines
407 B
Makefile
17 lines
407 B
Makefile
tag = "$$(git describe --tags)"
|
|
|
|
build:
|
|
docker build -t dashboard-backend .
|
|
docker tag dashboard-backend yksflip/dashboard-backend:$(tag)
|
|
docker push yksflip/dashboard-backend:$(tag)
|
|
|
|
clean:
|
|
rm database.db
|
|
flask db upgrade
|
|
|
|
demo:
|
|
flask cli app create nextcloud Dateiablage "https://cloud.dev.local-it.cloud"
|
|
flask cli app create vikunja Projekte "https://vikunja.dev.local-it.cloud"
|
|
|
|
run:
|
|
flask run
|