converting to quart app w/ sqlite

This commit is contained in:
lza_menace 2023-02-23 14:19:51 -08:00
parent e121cc8920
commit 4037dc7b78
23 changed files with 83 additions and 4044 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
.PHONY: format help
# Help system from https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
.DEFAULT_GOAL := help
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
setup: ## Establish local environment with dependencies installed
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
up: ## Run Grafana container
docker-compose up -d