├── .coveragerc ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── pyrightconfig.json ├── requirements.txt ├── sandbox ├── __init__.py ├── manage.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── demo.py │ └── tests.py ├── urls.py └── wsgi.py ├── setup.cfg ├── setup.py ├── testapp ├── __init__.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20211103_0749.py │ └── __init__.py └── models.py ├── tests ├── __init__.py ├── base.py ├── conftest.py ├── test_models.py └── test_settings.py └── vv ├── __init__.py ├── apps.py ├── conf ├── __init__.py ├── manager.py └── models.py ├── configure.py ├── files ├── __init__.py └── api │ ├── api.ts │ └── index.ts ├── frontend_models ├── __init__.py ├── model.py └── write.py ├── management ├── __init__.py └── commands │ ├── __init__.py │ ├── tsapi.py │ ├── tsmodels.py │ ├── viteconf.py │ └── vvcheck.py ├── urls.py ├── utils.py └── views ├── __init__.py └── auth.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/README.md -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/requirements.txt -------------------------------------------------------------------------------- /sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/sandbox/manage.py -------------------------------------------------------------------------------- /sandbox/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/sandbox/settings/base.py -------------------------------------------------------------------------------- /sandbox/settings/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/sandbox/settings/demo.py -------------------------------------------------------------------------------- /sandbox/settings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/sandbox/settings/tests.py -------------------------------------------------------------------------------- /sandbox/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/sandbox/urls.py -------------------------------------------------------------------------------- /sandbox/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/sandbox/wsgi.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/setup.py -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/testapp/apps.py -------------------------------------------------------------------------------- /testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /testapp/migrations/0002_auto_20211103_0749.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/testapp/migrations/0002_auto_20211103_0749.py -------------------------------------------------------------------------------- /testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/testapp/models.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /vv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/__init__.py -------------------------------------------------------------------------------- /vv/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/apps.py -------------------------------------------------------------------------------- /vv/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/conf/__init__.py -------------------------------------------------------------------------------- /vv/conf/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/conf/manager.py -------------------------------------------------------------------------------- /vv/conf/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/conf/models.py -------------------------------------------------------------------------------- /vv/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/configure.py -------------------------------------------------------------------------------- /vv/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv/files/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/files/api/api.ts -------------------------------------------------------------------------------- /vv/files/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/files/api/index.ts -------------------------------------------------------------------------------- /vv/frontend_models/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa: F401 2 | -------------------------------------------------------------------------------- /vv/frontend_models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/frontend_models/model.py -------------------------------------------------------------------------------- /vv/frontend_models/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/frontend_models/write.py -------------------------------------------------------------------------------- /vv/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv/management/commands/tsapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/management/commands/tsapi.py -------------------------------------------------------------------------------- /vv/management/commands/tsmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/management/commands/tsmodels.py -------------------------------------------------------------------------------- /vv/management/commands/viteconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/management/commands/viteconf.py -------------------------------------------------------------------------------- /vv/management/commands/vvcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/management/commands/vvcheck.py -------------------------------------------------------------------------------- /vv/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/urls.py -------------------------------------------------------------------------------- /vv/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/utils.py -------------------------------------------------------------------------------- /vv/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv/views/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/django-vitevue/HEAD/vv/views/auth.py --------------------------------------------------------------------------------