├── .gitignore ├── LICENSE ├── README.md ├── backend ├── .gitignore ├── Dockerfile ├── addcsv.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20201006_0214.py │ │ ├── 0003_item_institute_type.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── configuration │ └── base_stencil.yml ├── dashboard │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── requirements.txt ├── docker-compose.yml ├── frontend ├── .gitignore ├── Dockerfile ├── package-lock.json ├── package.json ├── public │ ├── CNAME │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ ├── meta.png │ ├── robots.txt │ ├── site.webmanifest │ └── sitemap.xml └── src │ ├── components │ ├── App │ │ ├── App.css │ │ └── App.js │ ├── AppFooter │ │ ├── AppFooter.css │ │ └── AppFooter.js │ ├── AppHeader │ │ ├── AppHeader.css │ │ └── AppHeader.js │ └── AppMain │ │ ├── AppMain.css │ │ └── AppMain.js │ ├── constants │ ├── categories.js │ ├── degrees.js │ ├── durations.js │ ├── institutes.js │ ├── instructions.js │ ├── pools.js │ ├── programs.js │ ├── rounds.js │ └── years.js │ ├── index.css │ ├── index.js │ └── serviceWorker.js ├── postgres ├── Dockerfile └── database.env └── webserver ├── Dockerfile └── proxy.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/addcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/addcsv.py -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/admin.py -------------------------------------------------------------------------------- /backend/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/apps.py -------------------------------------------------------------------------------- /backend/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/api/migrations/0002_auto_20201006_0214.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/migrations/0002_auto_20201006_0214.py -------------------------------------------------------------------------------- /backend/api/migrations/0003_item_institute_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/migrations/0003_item_institute_type.py -------------------------------------------------------------------------------- /backend/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/models.py -------------------------------------------------------------------------------- /backend/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/serializers.py -------------------------------------------------------------------------------- /backend/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/tests.py -------------------------------------------------------------------------------- /backend/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/urls.py -------------------------------------------------------------------------------- /backend/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/api/views.py -------------------------------------------------------------------------------- /backend/configuration/base_stencil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/configuration/base_stencil.yml -------------------------------------------------------------------------------- /backend/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/dashboard/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/dashboard/asgi.py -------------------------------------------------------------------------------- /backend/dashboard/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/dashboard/settings.py -------------------------------------------------------------------------------- /backend/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/dashboard/urls.py -------------------------------------------------------------------------------- /backend/dashboard/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/dashboard/wsgi.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/CNAME: -------------------------------------------------------------------------------- 1 | cutoffs.iitr.ac.in -------------------------------------------------------------------------------- /frontend/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/meta.png -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/site.webmanifest -------------------------------------------------------------------------------- /frontend/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/public/sitemap.xml -------------------------------------------------------------------------------- /frontend/src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/App/App.css -------------------------------------------------------------------------------- /frontend/src/components/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/App/App.js -------------------------------------------------------------------------------- /frontend/src/components/AppFooter/AppFooter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/AppFooter/AppFooter.css -------------------------------------------------------------------------------- /frontend/src/components/AppFooter/AppFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/AppFooter/AppFooter.js -------------------------------------------------------------------------------- /frontend/src/components/AppHeader/AppHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/AppHeader/AppHeader.css -------------------------------------------------------------------------------- /frontend/src/components/AppHeader/AppHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/AppHeader/AppHeader.js -------------------------------------------------------------------------------- /frontend/src/components/AppMain/AppMain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/AppMain/AppMain.css -------------------------------------------------------------------------------- /frontend/src/components/AppMain/AppMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/components/AppMain/AppMain.js -------------------------------------------------------------------------------- /frontend/src/constants/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/categories.js -------------------------------------------------------------------------------- /frontend/src/constants/degrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/degrees.js -------------------------------------------------------------------------------- /frontend/src/constants/durations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/durations.js -------------------------------------------------------------------------------- /frontend/src/constants/institutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/institutes.js -------------------------------------------------------------------------------- /frontend/src/constants/instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/instructions.js -------------------------------------------------------------------------------- /frontend/src/constants/pools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/pools.js -------------------------------------------------------------------------------- /frontend/src/constants/programs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/programs.js -------------------------------------------------------------------------------- /frontend/src/constants/rounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/rounds.js -------------------------------------------------------------------------------- /frontend/src/constants/years.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/constants/years.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/frontend/src/serviceWorker.js -------------------------------------------------------------------------------- /postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/postgres/Dockerfile -------------------------------------------------------------------------------- /postgres/database.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/postgres/database.env -------------------------------------------------------------------------------- /webserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/webserver/Dockerfile -------------------------------------------------------------------------------- /webserver/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nisarg73/jee-dashboard/HEAD/webserver/proxy.conf --------------------------------------------------------------------------------