mirror of
https://github.com/LeNei/axum-sqlx-template.git
synced 2026-02-13 22:56:19 +00:00
first commit
This commit is contained in:
10
configuration/base.yaml
Normal file
10
configuration/base.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
application:
|
||||
port: 8080
|
||||
host: 0.0.0.0
|
||||
database:
|
||||
host: "127.0.0.1"
|
||||
port: 5432
|
||||
username: "postgres"
|
||||
password: "postgres"
|
||||
database_name: "postgres"
|
||||
require_ssl: false
|
||||
5
configuration/local.yaml
Normal file
5
configuration/local.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
application:
|
||||
host: "127.0.0.1"
|
||||
base_url: "http://127.0.0.1"
|
||||
database:
|
||||
require_ssl: false
|
||||
4
configuration/production.yaml
Normal file
4
configuration/production.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
application:
|
||||
host: "0.0.0.0"
|
||||
database:
|
||||
require_ssl: true
|
||||
4
configuration/staging.yaml
Normal file
4
configuration/staging.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
application:
|
||||
host: "0.0.0.0"
|
||||
database:
|
||||
require_ssl: true
|
||||
Reference in New Issue
Block a user