├── .babelrc ├── .dockerignore ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── README_deploy.md ├── apps ├── __init__.py └── home │ ├── __init__.py │ ├── admin.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── env.sample ├── frontend └── src │ ├── Charts.js │ ├── RFlow.js │ └── index.js ├── gunicorn-cfg.py ├── manage.py ├── nginx └── appseed-app.conf ├── package.json ├── render.yaml ├── requirements.txt ├── static └── .gitkeep ├── templates ├── includes │ ├── breadcrumb.html │ ├── head.html │ ├── navigation.html │ ├── pre-loader.html │ ├── scripts.html │ └── sidebar.html ├── layouts │ ├── base-auth.html │ └── base.html └── pages │ ├── datatable.html │ ├── index.html │ ├── profile.html │ ├── reactflow.html │ └── recharts.html └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/README.md -------------------------------------------------------------------------------- /README_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/README_deploy.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/apps/home/admin.py -------------------------------------------------------------------------------- /apps/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/apps/home/models.py -------------------------------------------------------------------------------- /apps/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/apps/home/tests.py -------------------------------------------------------------------------------- /apps/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/apps/home/urls.py -------------------------------------------------------------------------------- /apps/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/apps/home/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/env.sample -------------------------------------------------------------------------------- /frontend/src/Charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/frontend/src/Charts.js -------------------------------------------------------------------------------- /frontend/src/RFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/frontend/src/RFlow.js -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /gunicorn-cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/gunicorn-cfg.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/manage.py -------------------------------------------------------------------------------- /nginx/appseed-app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/nginx/appseed-app.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/package.json -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/includes/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/includes/breadcrumb.html -------------------------------------------------------------------------------- /templates/includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/includes/head.html -------------------------------------------------------------------------------- /templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/includes/navigation.html -------------------------------------------------------------------------------- /templates/includes/pre-loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/includes/pre-loader.html -------------------------------------------------------------------------------- /templates/includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/includes/scripts.html -------------------------------------------------------------------------------- /templates/includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/includes/sidebar.html -------------------------------------------------------------------------------- /templates/layouts/base-auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/layouts/base-auth.html -------------------------------------------------------------------------------- /templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/layouts/base.html -------------------------------------------------------------------------------- /templates/pages/datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/pages/datatable.html -------------------------------------------------------------------------------- /templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/pages/index.html -------------------------------------------------------------------------------- /templates/pages/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/pages/profile.html -------------------------------------------------------------------------------- /templates/pages/reactflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/pages/reactflow.html -------------------------------------------------------------------------------- /templates/pages/recharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/templates/pages/recharts.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/app-generator/django-react-starter/HEAD/webpack.config.js --------------------------------------------------------------------------------