feat(docker): add docker support

This commit is contained in:
Kristofers Solo
2024-03-24 20:49:41 +02:00
parent 58681f9220
commit c2b4ac560a
10 changed files with 119 additions and 63 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 = "newsletter"

2
config/local.toml Normal file
View File

@@ -0,0 +1,2 @@
[application]
host = "127.0.0.1"

2
config/production.toml Normal file
View File

@@ -0,0 +1,2 @@
[application]
host = "0.0.0.0"