├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── backend ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── package.json ├── requirements.txt ├── simple_loader ├── __init__.py ├── apps.py ├── migrations │ └── __init__.py ├── templatetags │ ├── __init__.py │ └── simple_loader.py ├── test.py ├── urls.py └── utils.py ├── src ├── App.vue ├── components │ └── HelloWorld.vue └── index.js ├── templates └── index.html └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | 2 | /.git 3 | /dist 4 | node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/backend/asgi.py -------------------------------------------------------------------------------- /backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/backend/settings.py -------------------------------------------------------------------------------- /backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/backend/urls.py -------------------------------------------------------------------------------- /backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/backend/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==3.1 2 | -------------------------------------------------------------------------------- /simple_loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_loader/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/simple_loader/apps.py -------------------------------------------------------------------------------- /simple_loader/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_loader/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_loader/templatetags/simple_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/simple_loader/templatetags/simple_loader.py -------------------------------------------------------------------------------- /simple_loader/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/simple_loader/test.py -------------------------------------------------------------------------------- /simple_loader/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/simple_loader/urls.py -------------------------------------------------------------------------------- /simple_loader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/simple_loader/utils.py -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/src/index.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/templates/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legitYosal/django-packer/HEAD/webpack.config.js --------------------------------------------------------------------------------