mirror of
https://github.com/cupcakearmy/hagen-control-station.git
synced 2024-12-22 08:06:25 +00:00
28 lines
413 B
Markdown
28 lines
413 B
Markdown
# Hagen Control Center
|
|
|
|
## Docs
|
|
|
|
[Telegram Bot API](https://core.telegram.org/bots/api)
|
|
[Telegraf](https://telegraf.js.org/)
|
|
|
|
## Deployment
|
|
|
|
```yaml
|
|
# docker-compose.yaml
|
|
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
image: ghcr.io/cupcakearmy/hcs
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
volumes:
|
|
- ./data:/app/data
|
|
```
|
|
|
|
```bash
|
|
# .env
|
|
BOT_TOKEN=<telegram bot token>
|
|
HCS_PASSWORD=<password for users>
|
|
```
|