Spaces:
Running
Running
modifing gitignore
Browse files- .gitignore +20 -0
.gitignore
CHANGED
@@ -1 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
paris.py
|
|
|
1 |
+
# VS Code files for those working on multiple tools
|
2 |
+
.vscode/*
|
3 |
+
|
4 |
+
|
5 |
+
# Byte-compiled / optimized / DLL files
|
6 |
+
__pycache__/
|
7 |
+
*.py[cod]
|
8 |
+
*$py.class
|
9 |
+
|
10 |
+
# Environments
|
11 |
+
.env
|
12 |
+
.venv
|
13 |
+
env/
|
14 |
+
venv/
|
15 |
+
ENV/
|
16 |
+
env.bak/
|
17 |
+
venv.bak/
|
18 |
+
|
19 |
+
# Local JSON and Gradio files
|
20 |
+
paris.json
|
21 |
paris.py
|