13 lines
467 B
Text
13 lines
467 B
Text
# No need to change
|
|
POSTGRES_DB=dchat
|
|
# "db" being the name of the postgresql service inside the docker-compose.yml, "5432" is the port on which postgres
|
|
# listens for new connections and "dchat" is the database name.
|
|
POSTGRES_URL=jdbc:postgresql://db:5432/dchat
|
|
|
|
# Please change
|
|
DISCORD_API_KEY=<discord-api-key>
|
|
OPENAI_API_KEY=<openai-api-key>
|
|
|
|
# Those values can not change after the first start
|
|
POSTGRES_USER=<postgres-user>
|
|
POSTGRES_PASSWORD=<postgres-password>
|