- Add discord_agent.py with reply() instead of send() for user notifications - Add Discord bot Dockerfile and requirements.txt - Add bot cogs (base_cog.py and integration_cog.py) - Update .gitignore to track discord-agent directory - Bot now replies to messages triggering notifications for users
18 lines
231 B
Plaintext
18 lines
231 B
Plaintext
# Ignore everything by default
|
|
/*
|
|
|
|
# Only track these files
|
|
!docker-compose.yaml
|
|
!.env.example
|
|
!.gitignore
|
|
!README.md
|
|
!RESTORE.md
|
|
!AGENTS.md
|
|
!discord-agent/
|
|
!discord-agent/**
|
|
|
|
# Never track actual secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|