-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dev doc and bump release version
Signed-off-by: Aisuko <[email protected]>
- Loading branch information
Showing
5 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Development | ||
|
||
We recommend to use VSCode and [Devcontainer](../.devcontainer/devcontainer.json) 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. | ||
|
||
```bash | ||
make poetry | ||
``` | ||
|
||
```bash | ||
make build | ||
``` | ||
|
||
```bash | ||
# Execution pyhton 3.11 env | ||
make shell | ||
``` | ||
|
||
After you finish coding, run the follow commands to check the code quality and test. | ||
|
||
```bash | ||
make lint | ||
``` | ||
|
||
```bash | ||
make install | ||
``` | ||
|
||
```bash | ||
make test | ||
``` | ||
|