-
Notifications
You must be signed in to change notification settings - Fork 18
/
.gitignore
103 lines (77 loc) · 1.7 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
### SRC ###
# Ignore the build directory, which has compile Golang executables and Python packages.
src/build/
src/python/build/
# Ignore any IDE configuration files
*.idea/
*.vscode/
# Intellij IDE
src/ui/frontend.iml
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
# OS generated files
*.DS_Store
# Python notebooks
**/.ipynb_checkpoints/
### UI ###
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
**/node_modules
# parcel cache
**/.parcel-cache
# next.js
**/.next
# StorybookJS
**/storybook-static
# misc
*.pem
# debug
ui/*npm-debug.log*
ui/*yarn-debug.log*
ui/*yarn-error.log*
# local env files
**/.env.local
**/.env
# vercel
ui/.vercel
### SDK ###
sdk/__pycache__
sdk/build/
sdk/.ipynb_checkpoints/*
**/dist
*.egg-info/
*.mypy_cache
*.eggs
**/*zip
sdk/ensemble_predictions_aqueduct/
sdk/join_churn_scores_aqueduct/
sdk/log_featurize_aqueduct/
sdk/models/
sdk/not_too_much_churn_aqueduct_validation_test/
sdk/predict_decision_tree_model_aqueduct/
sdk/predict_linear_model_aqueduct/
sdk/predict_svm_model_aqueduct/
### SDK Docs ###
sdk/docs/build/
### INTEGRATION TEST ###
# Files created by running the SDK integration tests
**/__pycache__/
**/*_aqueduct/
**/*_aqueduct_validation_test/
**/*_aqueduct_metric/
**/*_aqueduct_check/
**/*_internal_aqueduct_bound_check/
# Integration Configuration Files - which may have sensitive credentials.
integration_tests/sdk/test-credentials.yml
integration_tests/sdk/*test-config.yml
**/.devcontainer/