A small python package which will help you to quickly start your django project. It will create a django project with all the necessary files and folders in just single command.
**Currently supports only 2 arguments on CLI 1. Project name 2. Application name**
**Further Release will Include multiple application supports from a single command along with Migration Automation**
[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)
[Istallation](https://pypi.org/project/quickstart-django/)
bash
py -m pip install quickstart-django
Usage
bash
py -m quickstart_django project_name application_name
Run Locally
Install dependencies
bash
py -m pip install Django
Clone the project
bash
git clone https://github.com/jaythorat/quickstart_django
Execute the command
bash
py ./quickstart_django/src/quickstart_django/quickstart_django.py project_name application_name
This will create a working django application with all the initial setup which is needed to run the app. Just change directory to project directory and run `py manage.py runserver`
Authors
- [jaythorat](https://www.github.com/jaythorat)