From 6568fd094f88e9fac1befd2797ada0038f0792fe Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Mon, 5 Feb 2024 16:51:24 +0300 Subject: [PATCH] feat: add configs --- .example.env | 10 ++++++++++ config.toml | 21 +++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .example.env create mode 100644 config.toml diff --git a/.example.env b/.example.env new file mode 100644 index 0000000..616773f --- /dev/null +++ b/.example.env @@ -0,0 +1,10 @@ +FARMSTAR_TELEGRAM__KEY= +FARMSTAR_TELEGRAM__GROUP= +FARMSTAR_POSTGRES__DSN= +FARMSTAR_USSD__ENDPOINT= +FARMSTAR_CUSTODIAL__ENDPOINT= +FARMSTAR_REWARDS__VAULT= +FARMSTAR_REWARDS__VOUCHER= +FARMSTAR_REWARDS__NUMBER= +FARMSTAR_AT__KEY= +FARMSTAR_AT__USERNAME= diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..0ac9931 --- /dev/null +++ b/config.toml @@ -0,0 +1,21 @@ +[postgres] +dsn = "" + +[ussd] +endpoint = "" + +[custodial] +endpoint = "" + +[telegram] +key = "" +group = "" + +[at] +key = "" +username = "" + +[rewards] +vault = "" +voucher = "" +number = ""