This commit is contained in:
2026-02-28 08:55:23 -05:00
commit f225eb2dc0
10 changed files with 1149 additions and 0 deletions

23
README.md Normal file
View File

@@ -0,0 +1,23 @@
# Vibe Discord Bots
## Build
### UV
```bash
export DISCORD_TOKEN=$(cat .token)
uv run main.py
```
### Container
```bash
# Build
podman build -t vibe-bot:latest .
# Run
export DISCORD_TOKEN=$(cat .token)
podman run -e DISCORD_TOKEN localhost/vibe-bot:latest
```
## Deploy