first commit

This commit is contained in:
LeNei
2023-05-07 21:18:16 +02:00
commit d70b2f37cc
18 changed files with 2407 additions and 0 deletions

10
configuration/base.yaml Normal file
View 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
View File

@@ -0,0 +1,5 @@
application:
host: "127.0.0.1"
base_url: "http://127.0.0.1"
database:
require_ssl: false

View File

@@ -0,0 +1,4 @@
application:
host: "0.0.0.0"
database:
require_ssl: true

View File

@@ -0,0 +1,4 @@
application:
host: "0.0.0.0"
database:
require_ssl: true