Initial commit

This commit is contained in:
2024-08-20 21:11:29 +03:00
commit 62c61c4541
19 changed files with 3421 additions and 0 deletions

9
config/base.toml Normal file
View File

@@ -0,0 +1,9 @@
[application]
port = 8000
[database]
host = "127.0.0.1"
port = 5432
username = "postgres"
password = "password"
database_name = "yoda-web"

5
config/local.toml Normal file
View File

@@ -0,0 +1,5 @@
[application]
host = "127.0.0.1"
[database]
require_ssl = false

5
config/production.toml Normal file
View File

@@ -0,0 +1,5 @@
[application]
host = "0.0.0.0"
[database]
require_ssl = true