diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-15 08:42:19 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-15 08:42:19 +0200 |
commit | a69c24e561c8ae16dc730f7713f8d8da0bd25e0e (patch) | |
tree | 32878bf97b1adf2da14c8e3da7265c8937b89650 /sellershut.toml | |
parent | a64eb6b08f2f8d22cf129fba39e1bb2c66bb3fad (diff) | |
download | sellershut-a69c24e561c8ae16dc730f7713f8d8da0bd25e0e.tar.bz2 sellershut-a69c24e561c8ae16dc730f7713f8d8da0bd25e0e.zip |
feat: persist with sqlx
Diffstat (limited to 'sellershut.toml')
-rw-r--r-- | sellershut.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sellershut.toml b/sellershut.toml new file mode 100644 index 0000000..d1f54ce --- /dev/null +++ b/sellershut.toml @@ -0,0 +1,16 @@ +[application] +env = "development" +port = 2210 + +[monitoring] +log-level = "sellershut=trace,info" + +[database] +pool_size = 100 +port = 5432 +name = "sellershut" +host = "localhost" +password = "password" +user = "postgres" + +# vim:ft=toml |