Use this as a foundation to kickstart your project repository. To get started, simply click on the green button labeled 'Use this template'.
- Clone Repository: Clone this repository onto your local machine.
- Install Poetry: Ensure you have Poetry installed on your system.
- Setup Environment: Open a terminal in the project's root directory and execute the following commands:
poetry shell poetry update pre-commit install
- Ready to Go! You're all set to start working on the project!
-
Adding Packages: You can add new packages via Poetry using the command
poetry add {package name}
. Please DO NOT add packages via pip, as it may lead to version conflicts in the future. -
Commit Changes: After adding a new package, remember to commit the modified
pyproject.toml
file so that other project members can access the new packages.