ilya94prok
commited on
Commit
•
907bec5
1
Parent(s):
b0bb716
Upload .gitignore
Browse files- .gitignore +20 -0
.gitignore
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
__pycache__/
|
2 |
+
*.py[cod]
|
3 |
+
/output/
|
4 |
+
/input/
|
5 |
+
!/input/example.png
|
6 |
+
/models/
|
7 |
+
/temp/
|
8 |
+
/custom_nodes/
|
9 |
+
!custom_nodes/example_node.py.example
|
10 |
+
extra_model_paths.yaml
|
11 |
+
/.vs
|
12 |
+
.vscode/
|
13 |
+
.idea/
|
14 |
+
venv/
|
15 |
+
/web/extensions/*
|
16 |
+
!/web/extensions/logging.js.example
|
17 |
+
!/web/extensions/core/
|
18 |
+
/tests-ui/data/object_info.json
|
19 |
+
/user/
|
20 |
+
*.log
|