diff --git a/Makefile b/Makefile index 2c1c042b8..9dedfda5e 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ GIT_COMMIT ?= $(shell git rev-parse HEAD) .PHONY: bootstrap bootstrap: ## Set up everything to run the app make generate-version-file - poetry install --dev + poetry install createdb notification_api || true (poetry run flask db upgrade) || true diff --git a/pyproject.toml b/pyproject.toml index d7175c43b..d33f82b16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,6 @@ version = "0.1.0" description = "Notify.gov backend" authors = ["Your Name "] readme = "README.md" -packages = [{include = "notifications_api"}] [tool.poetry.dependencies] python = "^3.9"