mirror of
https://github.com/polaroi8d/cactoide.git
synced 2026-03-22 06:05:28 +00:00
16 lines
403 B
Plaintext
16 lines
403 B
Plaintext
# Postgres configuration
|
|
POSTGRES_DB=cactoide_database
|
|
POSTGRES_USER=cactoide
|
|
POSTGRES_PASSWORD=cactoide_password
|
|
POSTGRES_PORT=5432
|
|
|
|
# localhost
|
|
DATABASE_URL="postgres://cactoide:cactoide_password@localhost:5432/cactoide_database"
|
|
# docker
|
|
# DATABASE_URL="postgres://cactoide:cactoide_password@postgres:5432/cactoide_database"
|
|
|
|
# Application configuration
|
|
APP_VERSION=latest
|
|
PORT=3000
|
|
HOSTNAME=0.0.0.0
|