Skip to content

PoliNetworkOrg/botcsharp-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

botcsharp-config

I was tired of messing out with k8s resources to correctly pass the configuration json file for the csharp telegram bot, so I created a simple Golang script that creates those configuration files from environment variabales.

Usage

Use this as an initContainer in your k8s deployment.
See this example.

Available configuration

These are the env variables you can set.

Note

Even if the var type is bool, int or others, you still need to set their k8s value as string

Columns notes:

  • Required means that you must specify it, otherwise the container PANICS.
  • Default is the default value for non-required fields.
  • Enum points to the config enum if exists.

Basic

Key Required Default Type Description
OUT_DIR Yes string Path where configuration files are written.
CREATE_BOT_CONFIG No true bool Whether to create configuration file bots_info.json (required to run the bot)
CREATE_DB_CONFIG No false bool Whether to create configuration file dbconfig.json (database config)
CREATE_MAT_CONFIG No false bool Whether to create configuration file materialbotconfig.json (Material Bot specific config)

Telegram Bot

Key Required Default Type Enum
BOT_TOKEN Yes string
BOT_ON_MESSAGES Yes string BotStartMethods
BOT_TYPE_API No 1 number BotConfigAPI
BOT_ACCEPTED_MESSAGES No true bool
BOT_WEBSITE No null string?
BOT_CONTACT_STRING No null string?
BOT_SESSION_USER_ID No null string?
BOT_API_HASH No null string?
BOT_NUMBER_COUNTRY No null string?
BOT_NUMBER_NUMBER No null string?
BOT_PASSWORD_TO_AUTHENTICATE No null string?
BOT_METHOD No null string?
BOT_USER_ID No null int?
BOT_API_ID No null int?

DB Config

Ensure CREATE_DB_CONFIG is set to true. Otherwise the following vars will be useless.

Key Required Type Description
DB_HOST Yes string Database Host
DB_PORT Yes int Database Port
DB_DATABASE Yes string Database name
DB_USER Yes string Database Login User
DB_PASSWORD Yes string Database Login Password

Material Bot (MAT) Config

Ensure CREATE_MAT_CONFIG is set to true. Otherwise the following vars will be useless.

Key Required Type Description
MAT_ROOT Yes string The git root directory on the container where repositories are stored
MAT_PASSWORD Yes string GitLab polibot password

About

A simple docker container to configure botcsharp config through env variables

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages