CLI Scaffolding Tool for web applications with python
To install this package, run - pip install rmnt
- Clone this repository
- Create a virtual environment and install all the required packages using -
pip install -r requirements.txt
- Run the following command -
pip install -e .
project/
├── src/
│ ├── __init__.py
│ ├── app.py
│ ├── config.py
│ ├── utils.py
│ ├── models.py
│ └── exceptions.py
├── tests/
│ ├── __init__.py
│ ├── test_utils.py
│ ├── test_app.py
├── .github/
│ └── workflows/
├── README.md
├── Dockerfile
├── LICENSE
├── .gitignore
└── .env
rmnt make <project-name>
- Initialize a new projectrmnt --help
- Show help messagermnt --version
- Show version
- Builds project structure for FastAPI and Flask projects
- Creates a virtual environment
- Initializes a git repository