Spaces:
Running
Running
Allison Huang
commited on
Commit
·
e629f7b
1
Parent(s):
9a3210f
add gitignore
Browse files- .gitignore +103 -0
.gitignore
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
########################################################################
|
2 |
+
# Python - https://github.com/github/gitignore/blob/master/Python.gitignore
|
3 |
+
########################################################################
|
4 |
+
# Byte-compiled / optimized / DLL files
|
5 |
+
__pycache__/
|
6 |
+
*.py[cod]
|
7 |
+
*$py.class
|
8 |
+
|
9 |
+
# Distribution / packaging
|
10 |
+
build/
|
11 |
+
dist/
|
12 |
+
eggs/
|
13 |
+
.eggs/
|
14 |
+
*.egg-info/
|
15 |
+
*.egg
|
16 |
+
.prerelease-version
|
17 |
+
|
18 |
+
# Unit test / coverage reports
|
19 |
+
.coverage
|
20 |
+
.coverage\.*
|
21 |
+
.pytest_cache/
|
22 |
+
.mypy_cache/
|
23 |
+
test-reports
|
24 |
+
htmlcov
|
25 |
+
.hypothesis
|
26 |
+
|
27 |
+
# Test fixtures
|
28 |
+
cffi_bin
|
29 |
+
|
30 |
+
# Pyenv Stuff
|
31 |
+
.python-version
|
32 |
+
venv
|
33 |
+
|
34 |
+
# Autogenerated Protobufs
|
35 |
+
lib/streamlit/proto/*_pb2.py
|
36 |
+
lib/streamlit/proto/*_pb2.pyi
|
37 |
+
frontend/src/lib/proto.js
|
38 |
+
frontend/src/lib/proto.d.ts
|
39 |
+
|
40 |
+
########################################################################
|
41 |
+
# OSX - https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
|
42 |
+
########################################################################
|
43 |
+
.DS_Store
|
44 |
+
.DocumentRevisions-V100
|
45 |
+
.fseventsd
|
46 |
+
.Spotlight-V100
|
47 |
+
.TemporaryItems
|
48 |
+
.Trashes
|
49 |
+
.VolumeIcon.icns
|
50 |
+
.com.apple.timemachine.donotpresent
|
51 |
+
|
52 |
+
########################################################################
|
53 |
+
# node - https://github.com/github/gitignore/blob/master/Node.gitignore
|
54 |
+
########################################################################
|
55 |
+
# Logs
|
56 |
+
npm-debug.log*
|
57 |
+
yarn-debug.log*
|
58 |
+
yarn-error.log*
|
59 |
+
|
60 |
+
# Dependency directories
|
61 |
+
node_modules/
|
62 |
+
|
63 |
+
# ESLint
|
64 |
+
.eslintcache
|
65 |
+
|
66 |
+
# Coverage directory used by tools like istanbul
|
67 |
+
coverage/
|
68 |
+
|
69 |
+
########################################################################
|
70 |
+
# Streamlit
|
71 |
+
########################################################################
|
72 |
+
.streamlit/
|
73 |
+
lib/streamlit/static
|
74 |
+
streamlit-storage
|
75 |
+
|
76 |
+
# Data Files
|
77 |
+
**/uber-raw-data-sep14.csv
|
78 |
+
|
79 |
+
lib/Pipfile.lock
|
80 |
+
|
81 |
+
########################################################################
|
82 |
+
# JetBrains
|
83 |
+
########################################################################
|
84 |
+
.idea
|
85 |
+
|
86 |
+
########################################################################
|
87 |
+
# Cypress
|
88 |
+
########################################################################
|
89 |
+
frontend/cypress/downloads
|
90 |
+
frontend/cypress/videos
|
91 |
+
frontend/cypress/screenshots
|
92 |
+
__diff_output__
|
93 |
+
cypress.env.json
|
94 |
+
frontend/test_results
|
95 |
+
|
96 |
+
# Ignore screenshots that don't get used in CircleCI
|
97 |
+
frontend/cypress/snapshots/darwin
|
98 |
+
frontend/cypress/snapshots/linux/1x
|
99 |
+
|
100 |
+
########################################################################
|
101 |
+
# VSCode
|
102 |
+
########################################################################
|
103 |
+
.vscode/
|