Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.11 KB

CONTRIBUTING.md

File metadata and controls

50 lines (35 loc) · 1.11 KB

🧑‍💻 Contributing

Prerequisites
1. Install Docker
  1. Go to Docker, download and install docker.
  2. Configure Docker to use the BuildKit build system. On macOS and Windows, BuildKit is enabled by default in Docker Desktop.
2. Install VS Code

Go to VS Code, download and install VS Code.

1. Open DevContainer with VS Code

Open this repository with VS Code, and run Ctrl/⌘ + + PDev Containers: Reopen in Container.

The following commands can be used inside a DevContainer.

2. Run linters

poe lint

3. Run tests

poe test

4. Update poetry lock file

poetry lock --no-update

5. Add dependencies and remove them if not needed

poetry add package
poetry remove package
# or remove the package from the pyproject.toml file and run
poetry install --sync