├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── backend ├── __init__.py ├── settings.py ├── settingsdev.py ├── templates │ └── index.html ├── urls.py ├── views.py └── wsgi.py ├── frontend ├── App.vue ├── assets │ └── logo.png └── main.js ├── manage ├── package.json ├── requirements-dev.txt ├── requirements.txt ├── server.js ├── static └── .gitkeep └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | static/**/*.js 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/backend/settings.py -------------------------------------------------------------------------------- /backend/settingsdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/backend/settingsdev.py -------------------------------------------------------------------------------- /backend/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/backend/templates/index.html -------------------------------------------------------------------------------- /backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/backend/urls.py -------------------------------------------------------------------------------- /backend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/backend/views.py -------------------------------------------------------------------------------- /backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/backend/wsgi.py -------------------------------------------------------------------------------- /frontend/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/frontend/App.vue -------------------------------------------------------------------------------- /frontend/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/frontend/assets/logo.png -------------------------------------------------------------------------------- /frontend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/frontend/main.js -------------------------------------------------------------------------------- /manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/manage -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/package.json -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | django-debug-toolbar 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/server.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hello-vue-django/HEAD/webpack.config.js --------------------------------------------------------------------------------