initial commit

This commit is contained in:
2023-05-01 02:37:14 +03:00
commit 4a5dfbff3a
23 changed files with 3739 additions and 0 deletions

22
settings/.env.template Normal file
View File

@@ -0,0 +1,22 @@
STAGE="dev"
APP_HOST="0.0.0.0"
APP_PORT="8000"
USER="web"
TELEGRAM_API_TOKEN="123456789:AABBCCDDEEFFaabbccddeeff-1234567890"
# webhook settings
WEBHOOK_HOST="https://mydomain.com"
WEBHOOK_PATH="/healthcheck"
# set to true to start with webhook. Else bot will start on polling method
START_WITH_WEBHOOK="false"
# quantity of workers for uvicorn
WORKERS_COUNT=1
# Enable uvicorn reloading
RELOAD="true"
DEBUG="true"