Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 611 Bytes

Development.md

File metadata and controls

35 lines (24 loc) · 611 Bytes

Development

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.

Setup

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