17 lines
298 B
Plaintext
17 lines
298 B
Plaintext
|
|
PORT=3001
|
|
DATABASE_URL="postgres://<user>:<user>@<host>:<port>/<db>?sslmode=disable"
|
|
|
|
ADMIN_NAME="admin"
|
|
ADMIN_EMAIL="admin@test.net"
|
|
ADMIN_PASSWORD="secret"
|
|
|
|
JWT_PRIVATE_KEY="ecdsa"
|
|
JWT_PUBLIC_KEY="ecdsa"
|
|
|
|
GOOSE_DRIVER="postgres"
|
|
GOOSE_DBSTRING=$DATABASE_URL
|
|
GOOSE_MIGRATION_DIR="./migrations"
|
|
|
|
|