Skip to content

Commit 8c0f5b6

Browse files
Merge pull request #9 from SRM-IST-KTR/dev
Website v2: Release!
2 parents 8d7bf10 + faf13ff commit 8c0f5b6

File tree

146 files changed

+14062
-3271
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+14062
-3271
lines changed

.env.example

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
SECRET_KEY= <Secret key>
2+
MONGO_URI = <MongoDB URI>
3+
MONGO_DB = <Database Name>
4+
TEST_MONGO_DB = <Your Test DB>
5+
RECAPTCHA_SECRET_KEY = <reCaptcha Key>
6+
TOKEN = <Your Token>
7+
AWS_ACCESS_KEY_ID = <aws key>
8+
AWS_SECRET_ACCESS_KEY = <aws secret key>
9+
SNS_ARN = <TopicArn for SNS>
10+
SNTRY_DSN = <Your sentry dsn>

.gitignore

+293-26
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,301 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
1+
.vscode
2+
# Created by https://www.toptal.com/developers/gitignore/api/django
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=django
24

3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
5+
### Django ###
6+
*.log
7+
*.pot
8+
*.pyc
9+
__pycache__/
10+
local_settings.py
11+
db.sqlite3
12+
db.sqlite3-journal
13+
media
14+
plan.md
15+
id_rsa
16+
id_rsa.pub
717

8-
# testing
9-
/coverage
18+
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
19+
# in your Git repository. Update and uncomment the following line accordingly.
20+
# <django-project-name>/staticfiles/
1021

11-
# next.js
12-
/.next/
13-
/out/
22+
### Django.Python Stack ###
23+
# Byte-compiled / optimized / DLL files
24+
*.py[cod]
25+
*$py.class
1426

15-
# production
16-
/build
27+
# C extensions
28+
*.so
1729

18-
# misc
19-
.DS_Store
20-
*.pem
30+
# Distribution / packaging
31+
.Python
32+
build/
33+
develop-eggs/
34+
dist/
35+
downloads/
36+
eggs/
37+
.eggs/
38+
lib/
39+
lib64/
40+
parts/
41+
sdist/
42+
var/
43+
wheels/
44+
share/python-wheels/
45+
*.egg-info/
46+
.installed.cfg
47+
*.egg
48+
MANIFEST
2149

22-
# debug
23-
npm-debug.log*
24-
yarn-debug.log*
25-
yarn-error.log*
50+
# PyInstaller
51+
# Usually these files are written by a python script from a template
52+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
53+
*.manifest
54+
*.spec
2655

27-
# local env files
28-
.env.local
29-
.env.development.local
30-
.env.test.local
31-
.env.production.local
56+
# Installer logs
57+
pip-log.txt
58+
pip-delete-this-directory.txt
3259

33-
# vercel
34-
.vercel
60+
# Unit test / coverage reports
61+
htmlcov/
62+
.tox/
63+
.nox/
64+
.coverage
65+
.coverage.*
66+
.cache
67+
nosetests.xml
68+
coverage.xml
69+
*.cover
70+
*.py,cover
71+
.hypothesis/
72+
.pytest_cache/
73+
cover/
74+
75+
# Translations
76+
*.mo
77+
78+
# Django stuff:
79+
80+
# Flask stuff:
81+
instance/
82+
.webassets-cache
83+
84+
# Scrapy stuff:
85+
.scrapy
86+
87+
# Sphinx documentation
88+
docs/_build/
89+
90+
# PyBuilder
91+
.pybuilder/
92+
target/
93+
94+
# Jupyter Notebook
95+
.ipynb_checkpoints
96+
97+
# IPython
98+
profile_default/
99+
ipython_config.py
100+
101+
# pyenv
102+
# For a library or package, you might want to ignore these files since the code is
103+
# intended to run in multiple environments; otherwise, check them in:
104+
# .python-version
105+
106+
# pipenv
107+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
108+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
109+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
110+
# install all needed dependencies.
111+
#Pipfile.lock
112+
113+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
114+
__pypackages__/
115+
116+
# Celery stuff
117+
celerybeat-schedule
118+
celerybeat.pid
119+
120+
# SageMath parsed files
121+
*.sage.py
122+
123+
# Environments
124+
.env
125+
.venv
126+
env/
127+
venv/
128+
ENV/
129+
env.bak/
130+
venv.bak/
131+
132+
# Spyder project settings
133+
.spyderproject
134+
.spyproject
135+
136+
# Rope project settings
137+
.ropeproject
138+
139+
# mkdocs documentation
140+
/site
141+
142+
# mypy
143+
.mypy_cache/
144+
.dmypy.json
145+
dmypy.json
146+
147+
# Pyre type checker
148+
.pyre/
149+
150+
# pytype static type analyzer
151+
.pytype/
152+
153+
# Cython debug symbols
154+
cython_debug/
155+
156+
# End of https://www.toptal.com/developers/gitignore/api/django
157+
158+
# Created by https://www.toptal.com/developers/gitignore/api/python
159+
# Edit at https://www.toptal.com/developers/gitignore?templates=python
160+
161+
### Python ###
162+
# Byte-compiled / optimized / DLL files
163+
__pycache__/
164+
*.py[cod]
165+
*$py.class
166+
167+
# C extensions
168+
*.so
169+
170+
# Distribution / packaging
171+
.Python
172+
build/
173+
develop-eggs/
174+
dist/
175+
downloads/
176+
eggs/
177+
.eggs/
178+
lib/
179+
lib64/
180+
parts/
181+
sdist/
182+
var/
183+
wheels/
184+
share/python-wheels/
185+
*.egg-info/
186+
.installed.cfg
187+
*.egg
188+
MANIFEST
189+
190+
# PyInstaller
191+
# Usually these files are written by a python script from a template
192+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
193+
*.manifest
194+
*.spec
195+
196+
# Installer logs
197+
pip-log.txt
198+
pip-delete-this-directory.txt
199+
200+
# Unit test / coverage reports
201+
htmlcov/
202+
.tox/
203+
.nox/
204+
.coverage
205+
.coverage.*
206+
.cache
207+
nosetests.xml
208+
coverage.xml
209+
*.cover
210+
*.py,cover
211+
.hypothesis/
212+
.pytest_cache/
213+
cover/
214+
215+
# Translations
216+
*.mo
217+
*.pot
218+
219+
# Django stuff:
220+
*.log
221+
local_settings.py
222+
db.sqlite3
223+
db.sqlite3-journal
224+
225+
# Flask stuff:
226+
instance/
227+
.webassets-cache
228+
229+
# Scrapy stuff:
230+
.scrapy
231+
232+
# Sphinx documentation
233+
docs/_build/
234+
235+
# PyBuilder
236+
.pybuilder/
237+
target/
238+
239+
# Jupyter Notebook
240+
.ipynb_checkpoints
241+
242+
# IPython
243+
profile_default/
244+
ipython_config.py
245+
246+
# pyenv
247+
# For a library or package, you might want to ignore these files since the code is
248+
# intended to run in multiple environments; otherwise, check them in:
249+
# .python-version
250+
251+
# pipenv
252+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
253+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
254+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
255+
# install all needed dependencies.
256+
#Pipfile.lock
257+
258+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
259+
__pypackages__/
260+
261+
# Celery stuff
262+
celerybeat-schedule
263+
celerybeat.pid
264+
265+
# SageMath parsed files
266+
*.sage.py
267+
268+
# Environments
269+
.env
270+
.venv
271+
env/
272+
venv/
273+
ENV/
274+
env.bak/
275+
venv.bak/
276+
277+
# Spyder project settings
278+
.spyderproject
279+
.spyproject
280+
281+
# Rope project settings
282+
.ropeproject
283+
284+
# mkdocs documentation
285+
/site
286+
287+
# mypy
288+
.mypy_cache/
289+
.dmypy.json
290+
dmypy.json
291+
292+
# Pyre type checker
293+
.pyre/
294+
295+
# pytype static type analyzer
296+
.pytype/
297+
298+
# Cython debug symbols
299+
cython_debug/
300+
301+
# End of https://www.toptal.com/developers/gitignore/api/python

0 commit comments

Comments
 (0)