├── .DS_Store ├── .babelrc ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ ├── app │ │ └── demo.html │ ├── base.html │ ├── components │ │ ├── Demo.js │ │ └── LoadingButton.js │ ├── index.html │ └── index.js ├── tests.py └── views.py ├── configs ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── docker-services.yml ├── manage.py ├── nginx-app.conf ├── package.json ├── requirements.txt ├── supervisor-app.conf ├── uwsgi.ini ├── uwsgi_params └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/models.py -------------------------------------------------------------------------------- /app/templates/app/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/templates/app/demo.html -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/components/Demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/templates/components/Demo.js -------------------------------------------------------------------------------- /app/templates/components/LoadingButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/templates/components/LoadingButton.js -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/tests.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/app/views.py -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/configs/settings.py -------------------------------------------------------------------------------- /configs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/configs/urls.py -------------------------------------------------------------------------------- /configs/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/configs/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-services.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/manage.py -------------------------------------------------------------------------------- /nginx-app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/nginx-app.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supervisor-app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/supervisor-app.conf -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/uwsgi.ini -------------------------------------------------------------------------------- /uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/uwsgi_params -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/django-react/HEAD/webpack.config.js --------------------------------------------------------------------------------