update readme for new config location

This commit is contained in:
Lili (Tlapka) 2022-09-23 12:33:02 +02:00
parent ac0f5c4549
commit 0bdb7ce2dd
1 changed files with 5 additions and 4 deletions

View File

@ -34,9 +34,10 @@ Initialize db:
```bash ```bash
python -m flask init-db python -m flask init-db
``` ```
Create a `tlapbot/config.py` file and fill it in as needed. Create an `instance/config.py` file and fill it in as needed.
Default values are included in `tlapbot/default_config`, and values in Default values are included in `tlapbot/default_config`, and values in
`config.py` overwrite them. `config.py` overwrite them. (The database also lives in the `instance` folder
by default.)
Tlapbot will probably not work if you don't overwrite these: Tlapbot will probably not work if you don't overwrite these:
```bash ```bash
@ -49,7 +50,7 @@ In Owncast, navigate to the admin interface at `/admin`,
and then go to Integrations. and then go to Integrations.
#### Access Token #### Access Token
In Access Tokens, generate an Access Token to put in In Access Tokens, generate an Access Token to put in
`tlapbot/config.py`. At the moment, the only permission the Access Token needs `instance/config.py`. At the moment, the only permission the Access Token needs
is sending messages, the bot doesn't perform any administrative actions. is sending messages, the bot doesn't perform any administrative actions.
#### Webhook #### Webhook
In webhooks, create a Webhook, and point it at your bot's URL with In webhooks, create a Webhook, and point it at your bot's URL with
@ -87,7 +88,7 @@ python -m flask --debug run
### Running in prod: ### Running in prod:
To be added when I actually run a prod version of the bot. To be added when I actually run a prod version of the bot.
## Config ## Config
Values you can include in `tlapbot/config.py` to change how the bot behaves. Values you can include in `instance/config.py` to change how the bot behaves.
### Channel points interval and amount ### Channel points interval and amount
`POINTS_CYCLE_TIME` decides how often channel points are given to users in chat, `POINTS_CYCLE_TIME` decides how often channel points are given to users in chat,
in seconds. in seconds.