You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -87,7 +87,7 @@ Other values will be added to your `.env` over time as you need to interact with
87
87
#### .env.server
88
88
All server related configuration values are saved in this file, which also needs to be at the root directory of the project.
89
89
90
-
We provide a script to automatically generate a server config.
90
+
We provide a script to automatically generate a server config.
91
91
**Note**: The script **only** works with servers created with the template mentioned above.
92
92
93
93
If you want to setup the bot from an existing guild read out [manual configuration guide](../bot-extended-configuration-options#manual-constants-configuration). This is far more complicated and time consuming.
@@ -96,7 +96,7 @@ Running the below command will use the `BOT_TOKEN` and `GUILD_ID` from the `.env
96
96
97
97
**Note**: This script will overwrite the `.env.server` file. We suggest you put any configuration not generated by this script in to `.env` instead
98
98
```shell
99
-
$ poetry run task configure
99
+
$ uv run task configure
100
100
```
101
101
102
102
Once the script has finished running, you'll notice the creation of a new file called `.env.server` at your project's root directory.
@@ -163,7 +163,7 @@ Even if you run the bot through Docker, you might want to [setup a development e
163
163
### Lint before you push
164
164
As mentioned in the [contributing guidelines](../contributing-guidelines), you should make sure your code passes linting for each commit you make.
165
165
166
-
For ease of development, you can install the pre-commit hook with `poetry run task precommit`, which will check your code every time you try to commit it.
166
+
For ease of development, you can install the pre-commit hook with `uv run task precommit`, which will check your code every time you try to commit it.
167
167
For that purpose, even if you run the bot through Docker, you might want to [setup a development environment](../bot-extended-configuration-options#setting-up-a-development-environment), as otherwise the hook installation will fail.
0 commit comments