Welcome to the CLI for aiostipy!
This command-line interface allows you to quickly generate code components for your aiostipy projects.
To use the aiostipy
CLI, you need to have aiostipy
installed. You can install it via pip:
pip install aiostipy
aiostipy new project_name
Genereates the following:
project_name/
├── src/
│ ├── __init__.py
│ ├── app_module.py
│ ├── app_controller.py
│ ├── app_service.py
├── main.py
└── README.md
To add components you can use the following:
aiostipy generate [controller|service|module|resource] resource_name
- controller: Generates a new controller.
- service: Generates a new service.
- module: Generates a new module.
- resource: Generates a new resource.
This project is licensed under the MIT License. See the LICENSEfile for details.