Add psycopg2 to Pipfile for SQLAlchemy Postgresql support

I'm not sure why this isn't installed automatically, but I guess in order to make sure tons of unused dependencies aren't installed on machines that don't need them as well as all the errors that crop up, it wasn't added.

As a user who's simply using it for deployment and didn't need it for local development, I suppose this is what happens.
This commit is contained in:
Xevion
2022-03-28 17:41:54 -05:00
parent f5f6f13756
commit 3ea945b99f
3 changed files with 20 additions and 2 deletions

View File

@@ -13,6 +13,7 @@ pytz = "*"
faker = "*"
humanize = "*"
gunicorn = "*"
psycopg2 = "*"
[dev-packages]