feat: add Dockerfile and README for project setup

This commit is contained in:
Fd
2026-08-13 17:12:00 +07:00
parent 0dee507221
commit f25b092a9a
2 changed files with 38 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# Pois
Discord bot that automatically joins a configured voice channel.
## Environment
Set the required environment variables in your shell. This project does not load `.env` files.
```bash
export DISCORD_TOKEN='your-bot-token'
export CHANNEL_ID='your-voice-channel-id'
```
## Binary
```bash
go build -o pois .
./pois
```
## Docker
```bash
docker build -t pois .
docker run --rm -e DISCORD_TOKEN='your-bot-token' -e CHANNEL_ID='your-voice-channel-id' pois
```