Closed ssjw closed 6 months ago
Two of the three database URLs have the wrong protocol specified. Should be postgresql not postgres. SQLAlchemy no longer accepts postgres.
postgresql
postgres
DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres NEW_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres TEST_DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres
Two of the three database URLs have the wrong protocol specified. Should be
postgresql
notpostgres
. SQLAlchemy no longer acceptspostgres
.