django-db-only

Django models as standalone app.


License
PSF-2.0
Install
pip install django-db-only==0.0.3

Documentation

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
Our community Telegram Group

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