Skip to content

Commit a953f90

Browse files
unknownunknown
unknown
authored and
unknown
committed
v2.0 code commit
1 parent cabbb19 commit a953f90

File tree

203 files changed

+6321
-521
lines changed

Some content is hidden

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

203 files changed

+6321
-521
lines changed

.gitignore

+137-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,144 @@
11
.idea/
2+
venv/
23
.DS_Store
4+
fred/jobs/
35
chromedriver
46
__pycache__/
57
*.json
8+
*.png
69
tmp/
710
*.log
8-
fred/inference/model_files.bz2
9-
fred/inference/model_files/*.pth
11+
fred/ml/model_files.bz2
12+
fred/ml/model_files/*.pth
13+
frontend/jobs
14+
log_*
15+
full_website_list
16+
17+
!fred/frontend/images/favicon/*.png
18+
19+
20+
# Editors
21+
.vscode/
22+
.idea/
23+
24+
# Vagrant
25+
.vagrant/
26+
27+
# Mac/OSX
28+
.DS_Store
29+
30+
# Windows
31+
Thumbs.db
32+
33+
# Source for the following rules: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore
34+
# Byte-compiled / optimized / DLL files
35+
__pycache__/
36+
*.py[cod]
37+
*$py.class
38+
39+
# C extensions
40+
*.so
41+
42+
# Distribution / packaging
43+
.Python
44+
build/
45+
develop-eggs/
46+
dist/
47+
downloads/
48+
eggs/
49+
.eggs/
50+
lib/
51+
lib64/
52+
parts/
53+
sdist/
54+
var/
55+
wheels/
56+
*.egg-info/
57+
.installed.cfg
58+
*.egg
59+
MANIFEST
60+
61+
# PyInstaller
62+
# Usually these files are written by a python script from a template
63+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
64+
*.manifest
65+
*.spec
66+
67+
# Installer logs
68+
pip-log.txt
69+
pip-delete-this-directory.txt
70+
71+
# Unit test / coverage reports
72+
htmlcov/
73+
.tox/
74+
.nox/
75+
.coverage
76+
.coverage.*
77+
.cache
78+
nosetests.xml
79+
coverage.xml
80+
*.cover
81+
.hypothesis/
82+
.pytest_cache/
83+
84+
# Translations
85+
*.mo
86+
*.pot
87+
88+
# Django stuff:
89+
*.log
90+
local_settings.py
91+
db.sqlite3
92+
93+
# Flask stuff:
94+
instance/
95+
.webassets-cache
96+
97+
# Scrapy stuff:
98+
.scrapy
99+
100+
# Sphinx documentation
101+
docs/_build/
102+
103+
# PyBuilder
104+
target/
105+
106+
# Jupyter Notebook
107+
.ipynb_checkpoints
108+
109+
# IPython
110+
profile_default/
111+
ipython_config.py
112+
113+
# pyenv
114+
.python-version
115+
116+
# celery beat schedule file
117+
celerybeat-schedule
118+
119+
# SageMath parsed files
120+
*.sage.py
121+
122+
# Environments
123+
.env
124+
.venv
125+
env/
126+
venv/
127+
ENV/
128+
env.bak/
129+
venv.bak/
130+
131+
# Spyder project settings
132+
.spyderproject
133+
.spyproject
134+
135+
# Rope project settings
136+
.ropeproject
137+
138+
# mkdocs documentation
139+
/site
140+
141+
# mypy
142+
.mypy_cache/
143+
.dmypy.json
144+
dmypy.json

0 commit comments

Comments
 (0)