Browse Source
Refactor postgres variables (#98)
Co-Authored-By: Valentin Zickner <valentin@coderworks.de>
pull/101/head
Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
.env
|
@ -11,6 +11,6 @@ POSTGRES_DB=ghostfolio-db |
|
|
|
|
|
|
|
|
ACCESS_TOKEN_SALT=GHOSTFOLIO |
|
|
ACCESS_TOKEN_SALT=GHOSTFOLIO |
|
|
ALPHA_VANTAGE_API_KEY= |
|
|
ALPHA_VANTAGE_API_KEY= |
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/ghostfolio-db?sslmode=prefer |
|
|
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?sslmode=prefer |
|
|
JWT_SECRET_KEY=123456 |
|
|
JWT_SECRET_KEY=123456 |
|
|
PORT=3333 |
|
|
PORT=3333 |
|
|