Skip to content

Commit 2f3649d

Browse files
committed
initialization and mvp project
0 parents  commit 2f3649d

18 files changed

Lines changed: 1236 additions & 0 deletions

.gitignore

Lines changed: 243 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,243 @@
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+
### Python 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+
# PyInstaller
110+
# Usually these files are written by a python script from a template
111+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
112+
*.manifest
113+
*.spec
114+
115+
# Installer logs
116+
pip-log.txt
117+
pip-delete-this-directory.txt
118+
119+
# Unit test / coverage reports
120+
htmlcov/
121+
.tox/
122+
.nox/
123+
.coverage
124+
.coverage.*
125+
.cache
126+
nosetests.xml
127+
coverage.xml
128+
*.cover
129+
*.py,cover
130+
.hypothesis/
131+
.pytest_cache/
132+
cover/
133+
134+
# Translations
135+
*.mo
136+
*.pot
137+
138+
# Django stuff:
139+
*.log
140+
local_settings.py
141+
db.sqlite3
142+
db.sqlite3-journal
143+
144+
# Flask stuff:
145+
instance/
146+
.webassets-cache
147+
148+
# Scrapy stuff:
149+
.scrapy
150+
151+
# Sphinx documentation
152+
docs/_build/
153+
154+
# PyBuilder
155+
.pybuilder/
156+
target/
157+
158+
# Jupyter Notebook
159+
.ipynb_checkpoints
160+
161+
# IPython
162+
profile_default/
163+
ipython_config.py
164+
165+
# pyenv
166+
# For a library or package, you might want to ignore these files since the code is
167+
# intended to run in multiple environments; otherwise, check them in:
168+
# .python-version
169+
170+
# pipenv
171+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
172+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
173+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
174+
# install all needed dependencies.
175+
#Pipfile.lock
176+
177+
# poetry
178+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
179+
# This is especially recommended for binary packages to ensure reproducibility, and is more
180+
# commonly ignored for libraries.
181+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
182+
#poetry.lock
183+
184+
# pdm
185+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
186+
#pdm.lock
187+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
188+
# in version control.
189+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
190+
.pdm.toml
191+
.pdm-python
192+
.pdm-build/
193+
194+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
195+
__pypackages__/
196+
197+
# Celery stuff
198+
celerybeat-schedule
199+
celerybeat.pid
200+
201+
# SageMath parsed files
202+
*.sage.py
203+
204+
# Environments
205+
.env
206+
.venv
207+
env/
208+
venv/
209+
ENV/
210+
env.bak/
211+
venv.bak/
212+
213+
# Spyder project settings
214+
.spyderproject
215+
.spyproject
216+
217+
# Rope project settings
218+
.ropeproject
219+
220+
# mkdocs documentation
221+
/site
222+
223+
# mypy
224+
.mypy_cache/
225+
.dmypy.json
226+
dmypy.json
227+
228+
# Pyre type checker
229+
.pyre/
230+
231+
# pytype static type analyzer
232+
.pytype/
233+
234+
# Cython debug symbols
235+
cython_debug/
236+
237+
# PyCharm
238+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
239+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
240+
# and can be added to the global gitignore or merged into this file. For a more nuclear
241+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
242+
#.idea/
243+

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/RowGen.iml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)