This commit is contained in:
Kenneth Kehl
2023-08-31 11:22:22 -07:00
parent bc956c3dac
commit 938e0b1057
2 changed files with 1 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ GIT_COMMIT ?= $(shell git rev-parse HEAD)
.PHONY: bootstrap .PHONY: bootstrap
bootstrap: ## Set up everything to run the app bootstrap: ## Set up everything to run the app
make generate-version-file make generate-version-file
poetry install --dev poetry install
createdb notification_api || true createdb notification_api || true
(poetry run flask db upgrade) || true (poetry run flask db upgrade) || true

View File

@@ -4,7 +4,6 @@ version = "0.1.0"
description = "Notify.gov backend" description = "Notify.gov backend"
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
readme = "README.md" readme = "README.md"
packages = [{include = "notifications_api"}]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.9" python = "^3.9"