A simple economy bot for discord
- Low customizability
- Admin user is set in config file, not retreived from the database
- No example config file
- No Docker images published
- Web UI is incomplete and unstable
- The items for the shop are hardcoded, not retreived from the database
- No documentation
- Likely unstable
- No unit testing available
Docker images are available. You can find an example of a docker-compose.yml
file below
services:
economy-bot:
image: ghcr.io/chiefbacon/simple-economy-bot:release
restart: unless-stopped
volumes:
- ./config:/bot/config
db:
image: postgres
restart: unless-stopped
environment:
POSTGRES_PASSWORD: <DATABASE PASSWORD HERE>
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata:
Place your config file in the ./config
directory. There is also a main
image available, which is even less stable than the release image.
Make any changes you see fit, then make a pull request from your fork. I will review your changes and accept them if everything seems ok.
If you have any questions or comments, feel free to open a discussion or issue.
This project is licensed under the MIT license and contains third party packages.