Metadata-Version: 2.1
Name: quickstart_django
Version: 1.1
Summary: 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.
Project-URL: Homepage, https://github.com/jaythorat/quickstart_django
Project-URL: Bug Tracker, https://github.com/jaythorat/quickstart_django/issues
Author-email: Jay Thorat <j.thorat10@gmail.com>
License-File: LICENCE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Quickstart_django

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.


[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)

## Istallation
```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)
