├── .gitignore ├── README.rst ├── USAGE.rst ├── demo ├── DemoApp.vue ├── app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── demo.json │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── demo │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── requirements.txt ├── run.sh └── static │ └── __git__ ├── django_vue_generator ├── __init__.py ├── forms.py ├── lists.py ├── management │ ├── __init__.py │ └── commands │ │ ├── build_frontend.py │ │ ├── generate_vue_form.py │ │ ├── generate_vue_list.py │ │ └── start_frontend.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py ├── utils.py ├── views.py └── vue.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── setup.py └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/README.rst -------------------------------------------------------------------------------- /USAGE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/USAGE.rst -------------------------------------------------------------------------------- /demo/DemoApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/DemoApp.vue -------------------------------------------------------------------------------- /demo/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/admin.py -------------------------------------------------------------------------------- /demo/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/apps.py -------------------------------------------------------------------------------- /demo/app/fixtures/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/fixtures/demo.json -------------------------------------------------------------------------------- /demo/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/models.py -------------------------------------------------------------------------------- /demo/app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/serializers.py -------------------------------------------------------------------------------- /demo/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/tests.py -------------------------------------------------------------------------------- /demo/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/app/views.py -------------------------------------------------------------------------------- /demo/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/demo/settings.py -------------------------------------------------------------------------------- /demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/demo/urls.py -------------------------------------------------------------------------------- /demo/demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/demo/wsgi.py -------------------------------------------------------------------------------- /demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/manage.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/requirements.txt -------------------------------------------------------------------------------- /demo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/demo/run.sh -------------------------------------------------------------------------------- /demo/static/__git__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_vue_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_vue_generator/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/forms.py -------------------------------------------------------------------------------- /django_vue_generator/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/lists.py -------------------------------------------------------------------------------- /django_vue_generator/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_vue_generator/management/commands/build_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/management/commands/build_frontend.py -------------------------------------------------------------------------------- /django_vue_generator/management/commands/generate_vue_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/management/commands/generate_vue_form.py -------------------------------------------------------------------------------- /django_vue_generator/management/commands/generate_vue_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/management/commands/generate_vue_list.py -------------------------------------------------------------------------------- /django_vue_generator/management/commands/start_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/management/commands/start_frontend.py -------------------------------------------------------------------------------- /django_vue_generator/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_vue_generator/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_vue_generator/tests.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django_vue_generator/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_vue_generator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/utils.py -------------------------------------------------------------------------------- /django_vue_generator/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_vue_generator/vue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/django_vue_generator/vue.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnhearts/django_vue_generator/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------