- Build SQLx queries beforehand so that we don't have to do PostgreSQL init right away at service start up - Created `Dockerfile.production` - Updated docs - Seperate configuration files for local and development environments
10 lines
161 B
YAML
10 lines
161 B
YAML
application:
|
|
port: 8000
|
|
host: 0.0.0.0
|
|
database:
|
|
host: "localhost"
|
|
port: 5432
|
|
username: "postgres"
|
|
password: "password"
|
|
database_name: "newsletter"
|