Metadata-Version: 2.1
Name: django-db-only
Version: 0.0.3
Summary: Django models as standalone app.
Home-page: http://github.com/abrorbekuz/django-db-only
Author: Abror Qodirov
Author-email: splayerme@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

# <p align="center">django-db-only

This is just wrapper package on top of django framework, which creates django project with only standalone modules included.
  
You can check releases in [Releases](https://github.com/abrorbekuz/django-db-only/releases)<br>
Our community [Telegram Group](https://t.me/django_db_only)

## Howto
**1.** install django-db-only: 

`python setup.py install` or just type `pip install django-db-only`

**2.** create standalone django models project:

```
django_db_only startproject myproject
cd myproject
```

**3.** migrate

```
python manage.py makemigrations <app_name>
python manage.py migrate <app_name>
```

**4.** run application with standalone django models:

```
python query_resolver.py
```




