initial commit

This commit is contained in:
2024-08-09 09:05:42 +02:00
commit d6d29b6568
33 changed files with 2499 additions and 0 deletions

18
settings/base.yaml Normal file
View File

@@ -0,0 +1,18 @@
application:
port: 3000
name: "${REPO_NAME_PASCAL}"
version: 0.1.0
database:
host: localhost
port: 5432
name: ${REPO_NAME_KEBAB}
user: dev
password: password
require_ssl: false
email:
host: smtp.${REPO_NAME_KEBAB}.example
user: user@${REPO_NAME_KEBAB}.example
from: ${REPO_NAME_PASCAL} <noreply@${REPO_NAME_KEBAB}.example>
password: hunter2

View File

@@ -0,0 +1,7 @@
frontend_url: http://localhost:5173
debug: true
application:
protocol: http
host: 127.0.0.1
base_url: http://127.0.0.1:3000

7
settings/production.yaml Normal file
View File

@@ -0,0 +1,7 @@
debug: false
frontend_url: ""
application:
protocol: https
host: 0.0.0.0
base_url: ""