diff options
Diffstat (limited to 'crates/sellershut/sellershut.toml')
-rw-r--r-- | crates/sellershut/sellershut.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/sellershut/sellershut.toml b/crates/sellershut/sellershut.toml new file mode 100644 index 0000000..77a8a25 --- /dev/null +++ b/crates/sellershut/sellershut.toml @@ -0,0 +1,20 @@ +[application] +env = "development" +port = 2210 + +[misc] +hostname = "localhost" +instance-name = "sellershut" + +[monitoring] +log-level = "sellershut=trace,info" + +[database] +pool_size = 100 +port = 5432 +name = "sellershut" +host = "localhost" +password = "password" +user = "postgres" + +# vim:ft=toml |