Skip to content

Latest commit

 

History

History
59 lines (47 loc) · 1.93 KB

File metadata and controls

59 lines (47 loc) · 1.93 KB

logo dark theme as default


📊 Shō-Kanri API | Sample API based on the Kanri project

Note

Shō-Kanri (or rather, 小規模な管理 Shōkibona Kanri) comes from Japanese and means "small-scale management", because it is a small sample of the @An-Ordinary-Software-Engineering/Kanri.Backend project's API.


Development Flow

Whenever you are going to perform a task associated with an Issue, create a new branch:

git checkout -b prefix/your-branch-name

When finished, create a Pull Request for the develop branch!

Tip

It is important to follow these conventions, as the execution of certain operations will be restricted by predefined "rulesets" in the main branch.

Project Structure

├── Docs/
├── Library/
│   ├── ShoKanri.Exception/
│   └── ShoKanri.Http/
│
├── Source/
│   ├── Core/
│   │   ├── ShoKanri.Application/
│   │   └── ShoKanri.Domain/
│   │ 
│   ├── Infrastructure/
│   │   ├── ShoKanri.DAO/
│   │   └── ShoKanri.IoC/
│   │
│   └── Presenter/
│       └── ShoKanri.API/
│
└── Test/
    ├── ShoKanri.Domain.Unit/
    └── ShoKanri.Mock/

This is the target structure of the project