Skip to content

Commit cc9c4ba

Browse files
🎉 Create takehome project
0 parents  commit cc9c4ba

22 files changed

+2017
-0
lines changed

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SECRET_KEY=SIMPLIFY_TAKE_HOME

.gitignore

+269
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,269 @@
1+
### PyCharm template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
3+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
4+
5+
# User-specific stuff
6+
.idea/**/workspace.xml
7+
.idea/**/tasks.xml
8+
.idea/**/usage.statistics.xml
9+
.idea/**/dictionaries
10+
.idea/**/shelf
11+
12+
# AWS User-specific
13+
.idea/**/aws.xml
14+
15+
# Generated files
16+
.idea/**/contentModel.xml
17+
18+
# Sensitive or high-churn files
19+
.idea/**/dataSources/
20+
.idea/**/dataSources.ids
21+
.idea/**/dataSources.local.xml
22+
.idea/**/sqlDataSources.xml
23+
.idea/**/dynamic.xml
24+
.idea/**/uiDesigner.xml
25+
.idea/**/dbnavigator.xml
26+
27+
# Gradle
28+
.idea/**/gradle.xml
29+
.idea/**/libraries
30+
31+
# Gradle and Maven with auto-import
32+
# When using Gradle or Maven with auto-import, you should exclude module files,
33+
# since they will be recreated, and may cause churn. Uncomment if using
34+
# auto-import.
35+
# .idea/artifacts
36+
# .idea/compiler.xml
37+
# .idea/jarRepositories.xml
38+
# .idea/modules.xml
39+
# .idea/*.iml
40+
# .idea/modules
41+
# *.iml
42+
# *.ipr
43+
44+
# CMake
45+
cmake-build-*/
46+
47+
# Mongo Explorer plugin
48+
.idea/**/mongoSettings.xml
49+
50+
# File-based project format
51+
*.iws
52+
53+
# IntelliJ
54+
out/
55+
56+
# mpeltonen/sbt-idea plugin
57+
.idea_modules/
58+
59+
# JIRA plugin
60+
atlassian-ide-plugin.xml
61+
62+
# Cursive Clojure plugin
63+
.idea/replstate.xml
64+
65+
# SonarLint plugin
66+
.idea/sonarlint/
67+
68+
# Crashlytics plugin (for Android Studio and IntelliJ)
69+
com_crashlytics_export_strings.xml
70+
crashlytics.properties
71+
crashlytics-build.properties
72+
fabric.properties
73+
74+
# Editor-based Rest Client
75+
.idea/httpRequests
76+
77+
# Android studio 3.1+ serialized cache file
78+
.idea/caches/build_file_checksums.ser
79+
80+
### PythonVanilla template
81+
# Byte-compiled / optimized / DLL files
82+
__pycache__/
83+
*.py[cod]
84+
*$py.class
85+
86+
# C extensions
87+
*.so
88+
89+
# Distribution / packaging
90+
.Python
91+
build/
92+
develop-eggs/
93+
dist/
94+
downloads/
95+
eggs/
96+
.eggs/
97+
lib/
98+
lib64/
99+
parts/
100+
sdist/
101+
var/
102+
wheels/
103+
share/python-wheels/
104+
*.egg-info/
105+
.installed.cfg
106+
*.egg
107+
MANIFEST
108+
109+
# Installer logs
110+
pip-log.txt
111+
pip-delete-this-directory.txt
112+
113+
# Unit test / coverage reports
114+
htmlcov/
115+
.tox/
116+
.nox/
117+
.coverage
118+
.coverage.*
119+
.cache
120+
nosetests.xml
121+
coverage.xml
122+
*.cover
123+
*.py,cover
124+
.hypothesis/
125+
.pytest_cache/
126+
cover/
127+
128+
# Translations
129+
*.mo
130+
*.pot
131+
132+
# pyenv
133+
# For a library or package, you might want to ignore these files since the code is
134+
# intended to run in multiple environments; otherwise, check them in:
135+
# .python-version
136+
137+
# pipenv
138+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
139+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
140+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
141+
# install all needed dependencies.
142+
#Pipfile.lock
143+
144+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
145+
__pypackages__/
146+
147+
148+
### Python template
149+
# Byte-compiled / optimized / DLL files
150+
151+
# C extensions
152+
153+
# Distribution / packaging
154+
155+
# PyInstaller
156+
# Usually these files are written by a python script from a template
157+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
158+
*.manifest
159+
*.spec
160+
161+
# Installer logs
162+
163+
# Unit test / coverage reports
164+
165+
# Translations
166+
167+
# Django stuff:
168+
*.log
169+
local_settings.py
170+
db.sqlite3
171+
db.sqlite3-journal
172+
173+
# Flask stuff:
174+
instance/
175+
.webassets-cache
176+
177+
# Scrapy stuff:
178+
.scrapy
179+
180+
# Sphinx documentation
181+
docs/_build/
182+
183+
# PyBuilder
184+
.pybuilder/
185+
target/
186+
187+
# Jupyter Notebook
188+
.ipynb_checkpoints
189+
190+
# IPython
191+
profile_default/
192+
ipython_config.py
193+
194+
# pyenv
195+
# For a library or package, you might want to ignore these files since the code is
196+
# intended to run in multiple environments; otherwise, check them in:
197+
# .python-version
198+
199+
# pipenv
200+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
201+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
202+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
203+
# install all needed dependencies.
204+
#Pipfile.lock
205+
206+
# poetry
207+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
208+
# This is especially recommended for binary packages to ensure reproducibility, and is more
209+
# commonly ignored for libraries.
210+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
211+
#poetry.lock
212+
213+
# pdm
214+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
215+
#pdm.lock
216+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
217+
# in version control.
218+
# https://pdm.fming.dev/#use-with-ide
219+
.pdm.toml
220+
221+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
222+
223+
# Celery stuff
224+
celerybeat-schedule
225+
celerybeat.pid
226+
227+
# SageMath parsed files
228+
*.sage.py
229+
230+
# Environments
231+
.env
232+
.venv
233+
env/
234+
venv/
235+
ENV/
236+
env.bak/
237+
venv.bak/
238+
239+
# Spyder project settings
240+
.spyderproject
241+
.spyproject
242+
243+
# Rope project settings
244+
.ropeproject
245+
246+
# mkdocs documentation
247+
/site
248+
249+
# mypy
250+
.mypy_cache/
251+
.dmypy.json
252+
dmypy.json
253+
254+
# Pyre type checker
255+
.pyre/
256+
257+
# pytype static type analyzer
258+
.pytype/
259+
260+
# Cython debug symbols
261+
cython_debug/
262+
263+
# PyCharm
264+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
265+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
266+
# and can be added to the global gitignore or merged into this file. For a more nuclear
267+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
268+
#.idea/
269+

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/GitLink.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/fastapi-takehome.iml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)