├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── env.sample ├── gulpfile.js ├── gunicorn-cfg.py ├── home ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media ├── django-dashboard-atlantis-dark-intro.gif ├── django-dashboard-atlantis-dark-screen-1.png ├── django-dashboard-atlantis-dark-screen-2.png ├── django-dashboard-atlantis-dark-screen-3.png ├── django-dashboard-atlantis-dark-screen-4.png ├── django-dashboard-atlantis-dark-screen-5.png ├── django-dashboard-atlantis-dark-screen-6.png ├── django-dashboard-atlantis-dark-screen-login.png ├── django-dashboard-atlantis-dark-screen-register.png └── django-dashboard-atlantis-dark-screen.png ├── nginx └── appseed-app.conf ├── package.json ├── render.yaml ├── requirements.txt ├── static └── .gitkeep └── templates └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/env.sample -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/gulpfile.js -------------------------------------------------------------------------------- /gunicorn-cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/gunicorn-cfg.py -------------------------------------------------------------------------------- /home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/home/admin.py -------------------------------------------------------------------------------- /home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/home/apps.py -------------------------------------------------------------------------------- /home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/home/models.py -------------------------------------------------------------------------------- /home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/home/tests.py -------------------------------------------------------------------------------- /home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/home/urls.py -------------------------------------------------------------------------------- /home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/home/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/manage.py -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-intro.gif -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-1.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-2.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-3.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-4.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-5.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-6.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-login.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen-register.png -------------------------------------------------------------------------------- /media/django-dashboard-atlantis-dark-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/media/django-dashboard-atlantis-dark-screen.png -------------------------------------------------------------------------------- /nginx/appseed-app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/nginx/appseed-app.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/demo-dashboard/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------