rhythm-backend/example.env
Dmitri 534c6ebf2f
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 9m40s
added example .env
2026-04-28 19:13:52 +02:00

15 lines
349 B
Bash

DB_USERNAME=user
# openssl rand -base64 32 | wl-copy
DB_PASSWORD=password
DB_NAME=rhythm-dev
DB_PORT=5432
DB_HOST=localhost
DATABASE_URL=postgres://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}?schema=public&sslmode=disable
# app env can be one of the following [prod, dev]
APP_ENV=dev
# APP_ENV=prod
SOCKET_ADDRESS=0.0.0.0:6969