We recommend to use VSCode and Devcontainer for development. We can keep the development environment consistent and isolated from the host machine. And also same as the CI/CD environment.
After open form the Devcontainer, run the following commands to setup the development environment.
make poetry
make build
# Execution pyhton 3.11 env
make shell
After you finish coding, run the follow commands to check the code quality and test.
make lint
make install
make test