https://github.com/philrw/matrix-bot-ledger
https://github.com/philrw/matrix-bot-ledger
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/philrw/matrix-bot-ledger
- Owner: PhilRW
- Created: 2019-06-12T16:43:50.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-18T14:27:29.000Z (almost 6 years ago)
- Last Synced: 2025-01-15T21:30:18.369Z (4 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-compose:
Add this to your matrix services `docker-compose.yaml`:
```yaml
appservice-ledger:
image: philrw/matrix-bot-ledger
restart: unless-stopped
environment:
- "HOMESERVER=https://matrix.example.com"
- "USERNAME=@ledger:matrix.example.com"
- "PASSWORD=12345"
- "ALLOWED_USERS=@somebody:matrix.example.com,@somebody-else:matrix.example.com"
- "LEDGER_FILE=/ledger/finances.ledger"
- "LEDGER_PRICE_DB=/ledger/price-db.ledger"
volumes:
- /mnt/data/ledger:/ledger:ro # wherever your LEGER_FILE and/or LEDGER_PRICE_DB are located
```