Skip to content
This repository was archived by the owner on Jul 18, 2022. It is now read-only.

Commit a4dbe71

Browse files
author
Michael Oliver
committed
initial commit
0 parents  commit a4dbe71

File tree

186 files changed

+41405
-0
lines changed

Some content is hidden

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

186 files changed

+41405
-0
lines changed

.dockerignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
__pycache__
2+
.git
3+
.dockerignore
4+
.gitignore
5+
6+
.cache/
7+
.coverage
8+
.storybook-out/
9+
.DS_Store
10+
.venv
11+
*.egg-info
12+
*.pyc
13+
*.log
14+
*.egg
15+
*.db
16+
*.pid
17+
MANIFEST
18+
test.conf
19+
pip-log.txt
20+
package.json
21+
/.artifacts
22+
/coverage/
23+
/cover
24+
/build
25+
/env
26+
/tmp
27+
/node_modules/
28+
/wheelhouse
29+
/test_cli/
30+
.idea/
31+
.pytest_cache/
32+
.vscode/tags
33+
coverage.xml
34+
junit.xml
35+
*.codestyle.xml
36+
package-lock.json
37+
htmlcov

.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# https://editorconfig.org/

.github/workflows/lint_and_test.yaml

Whitespace-only changes.

.gitignore

+266
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,266 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Python template
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
31+
32+
# PyInstaller
33+
# Usually these files are written by a python script from a template
34+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
*.manifest
36+
*.spec
37+
38+
# Installer logs
39+
pip-log.txt
40+
pip-delete-this-directory.txt
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.nox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
*.py,cover
53+
.hypothesis/
54+
.pytest_cache/
55+
56+
# Translations
57+
*.mo
58+
*.pot
59+
60+
# Django stuff:
61+
*.log
62+
local_settings.py
63+
db.sqlite3
64+
db.sqlite3-journal
65+
66+
# Flask stuff:
67+
instance/
68+
.webassets-cache
69+
70+
# Scrapy stuff:
71+
.scrapy
72+
73+
# Sphinx documentation
74+
docs/_build/
75+
76+
# PyBuilder
77+
target/
78+
79+
# Jupyter Notebook
80+
.ipynb_checkpoints
81+
82+
# IPython
83+
profile_default/
84+
ipython_config.py
85+
86+
# pyenv
87+
.python-version
88+
89+
# pipenv
90+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
92+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
93+
# install all needed dependencies.
94+
#Pipfile.lock
95+
96+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
97+
__pypackages__/
98+
99+
# Celery stuff
100+
celerybeat-schedule
101+
celerybeat.pid
102+
103+
# SageMath parsed files
104+
*.sage.py
105+
106+
# Environments
107+
docker/.env
108+
.venv
109+
env/
110+
venv/
111+
ENV/
112+
env.bak/
113+
venv.bak/
114+
115+
# Spyder project settings
116+
.spyderproject
117+
.spyproject
118+
119+
# Rope project settings
120+
.ropeproject
121+
122+
# mkdocs documentation
123+
/site
124+
125+
# mypy
126+
.mypy_cache/
127+
.dmypy.json
128+
dmypy.json
129+
130+
# Pyre type checker
131+
.pyre/
132+
133+
### Windows template
134+
# Windows thumbnail cache files
135+
Thumbs.db
136+
Thumbs.db:encryptable
137+
ehthumbs.db
138+
ehthumbs_vista.db
139+
140+
# Dump file
141+
*.stackdump
142+
143+
# Folder config file
144+
[Dd]esktop.ini
145+
146+
# Recycle Bin used on file shares
147+
$RECYCLE.BIN/
148+
149+
# Windows Installer files
150+
*.cab
151+
*.msi
152+
*.msix
153+
*.msm
154+
*.msp
155+
156+
# Windows shortcuts
157+
*.lnk
158+
159+
### VisualStudioCode template
160+
.vscode/*
161+
!.vscode/settings.json
162+
!.vscode/tasks.json
163+
!.vscode/launch.json
164+
!.vscode/extensions.json
165+
*.code-workspace
166+
167+
### macOS template
168+
# General
169+
.DS_Store
170+
.AppleDouble
171+
.LSOverride
172+
173+
# Icon must end with two \r
174+
Icon
175+
176+
# Thumbnails
177+
._*
178+
179+
# Files that might appear in the root of a volume
180+
.DocumentRevisions-V100
181+
.fseventsd
182+
.Spotlight-V100
183+
.TemporaryItems
184+
.Trashes
185+
.VolumeIcon.icns
186+
.com.apple.timemachine.donotpresent
187+
188+
# Directories potentially created on remote AFP share
189+
.AppleDB
190+
.AppleDesktop
191+
Network Trash Folder
192+
Temporary Items
193+
.apdisk
194+
195+
### JetBrains template
196+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
197+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
198+
199+
# User-specific stuff
200+
.idea/**/workspace.xml
201+
.idea/**/tasks.xml
202+
.idea/**/usage.statistics.xml
203+
.idea/**/dictionaries
204+
.idea/**/shelf
205+
206+
# Generated files
207+
.idea/**/contentModel.xml
208+
209+
# Sensitive or high-churn files
210+
.idea/**/dataSources/
211+
.idea/**/dataSources.ids
212+
.idea/**/dataSources.local.xml
213+
.idea/**/sqlDataSources.xml
214+
.idea/**/dynamic.xml
215+
.idea/**/uiDesigner.xml
216+
.idea/**/dbnavigator.xml
217+
218+
# Gradle
219+
.idea/**/gradle.xml
220+
.idea/**/libraries
221+
222+
# Gradle and Maven with auto-import
223+
# When using Gradle or Maven with auto-import, you should exclude module files,
224+
# since they will be recreated, and may cause churn. Uncomment if using
225+
# auto-import.
226+
# .idea/artifacts
227+
# .idea/compiler.xml
228+
# .idea/modules.xml
229+
# .idea/*.iml
230+
# .idea/modules
231+
# *.iml
232+
# *.ipr
233+
234+
# CMake
235+
cmake-build-*/
236+
237+
# Mongo Explorer plugin
238+
.idea/**/mongoSettings.xml
239+
240+
# File-based project format
241+
*.iws
242+
243+
# IntelliJ
244+
out/
245+
246+
# mpeltonen/sbt-idea plugin
247+
.idea_modules/
248+
249+
# JIRA plugin
250+
atlassian-ide-plugin.xml
251+
252+
# Cursive Clojure plugin
253+
.idea/replstate.xml
254+
255+
# Crashlytics plugin (for Android Studio and IntelliJ)
256+
com_crashlytics_export_strings.xml
257+
crashlytics.properties
258+
crashlytics-build.properties
259+
fabric.properties
260+
261+
# Editor-based Rest Client
262+
.idea/httpRequests
263+
264+
# Android studio 3.1+ serialized cache file
265+
.idea/caches/build_file_checksums.ser
266+

.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/sync-fastapi.iml

+21
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.

README.md

Whitespace-only changes.

client/.browserslistrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
> 1%
2+
last 2 versions

client/.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VUE_APP_BASE_API = 'http://0.0.0.0:8000/api/v1/'

client/.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/*.js
2+
src/assets
3+
tests/unit/coverage

0 commit comments

Comments
 (0)