Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 648 Bytes

File metadata and controls

28 lines (25 loc) · 648 Bytes

This command helps you create ellar project module, like a small app within a project. It depends on the existence of an ellar project.

ellar create-module my_project_module

will create a folder as follows:

john_doe
├── apps
|   ├── my_project_module
|   |   └── __init__.py
|   |   └── controllers.py
|   |   └── module.py
|   |   └── routers.py
|   |   └── schemas.py
|   |   └── services.py
|   |   └── tests
|   └── __init__.py
├── core
├── domain
└── __init__.py
└── config.py
└── root_module.py
└── server.py