Telegram bot
Aktienbot telegram bot
Development
- Create virtual environment 
python -m venv venv - Launch venv: 
.\venv\Scripts\activate - Install requirements 
pip install -r telegram_bot/requirements.txt - Set environment variables (see list below)
- Use 
.env-file inapidirectory like.env.example - Or set variables using 
exportorsetcommands. (Windowsset, Linuxexport) 
 - Use 
 - Run file 
python telegram_bot/bot.py 
Environment variables
    # Telegram bot api key
    BOT_API_KEY=
    
    # News api key
    NEWS_API_KEY=
Docker
docker run -d \
    --name aktienbot_bot \
    --hostname aktienbot_bot \
    --publish 80:80 \
    --env "BOT_API_KEY=" \
    --env "NEWS_API_KEY=" \
    --restart unless-stopped \
    registry.flokaiser.com/aktienbot/bot:latest
or load environment variables from file by using --env-file <filename>