GoodAI / charlie-mnemonic

Charlie Mnemonic: The First Personal Assistant with Long-Term Memory
https://www.goodai.com/introducing-charlie-mnemonic/
167 stars 19 forks source link

Database URL examples wrong in the .env_sample file #14

Closed ssjw closed 6 months ago

ssjw commented 7 months ago

Two of the three database URLs have the wrong protocol specified. Should be postgresql not postgres. SQLAlchemy no longer accepts 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