├── .babelrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── assets ├── bundles │ └── app.js └── js │ ├── components │ └── Demo.vue │ └── index.js ├── manage.py ├── my_django_vue ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── myapp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── index.html ├── tests.py └── views.py ├── package.json ├── pytest.ini ├── requirements.txt ├── test ├── __init__.py ├── conftest.py └── test_page.py ├── wait-for-it.sh └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /assets/bundles/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/assets/bundles/app.js -------------------------------------------------------------------------------- /assets/js/components/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/assets/js/components/Demo.vue -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/assets/js/index.js -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/manage.py -------------------------------------------------------------------------------- /my_django_vue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my_django_vue/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/my_django_vue/settings.py -------------------------------------------------------------------------------- /my_django_vue/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/my_django_vue/urls.py -------------------------------------------------------------------------------- /my_django_vue/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/my_django_vue/wsgi.py -------------------------------------------------------------------------------- /myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/myapp/apps.py -------------------------------------------------------------------------------- /myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /myapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/myapp/templates/index.html -------------------------------------------------------------------------------- /myapp/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /myapp/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE = my_django_vue.settings -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/test/test_page.py -------------------------------------------------------------------------------- /wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/wait-for-it.sh -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelbukachi/django-vuejs-tutorial/HEAD/webpack.config.js --------------------------------------------------------------------------------