15 lines
No EOL
371 B
Bash
15 lines
No EOL
371 B
Bash
# Address to bind to (e.g. 127.0.0.1, 0.0.0.0, [::])
|
|
# default: 127.0.0.1
|
|
BINDADDR=127.0.0.1
|
|
|
|
# Port to bind to
|
|
# default: 3000
|
|
PORT=3000
|
|
|
|
# List of trusted proxy IPs separated by colons
|
|
# default: 127.0.0.1,::1
|
|
# TRUSTEDPROXIES=127.0.0.1,::1
|
|
|
|
# Postgresql connection string
|
|
# format: postgresql://<username>:<password>@<database_ip>/todos?sslmode=verify-ca
|
|
DATABASE_URL= |