Spaces:
Running
Running
minor changes
Browse files- .gitignore +1 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -2,4 +2,4 @@
|
|
2 |
*.pyc
|
3 |
__pycache__
|
4 |
notebooks/.ipynb_checkpoints
|
5 |
-
notebooks
|
|
|
2 |
*.pyc
|
3 |
__pycache__
|
4 |
notebooks/.ipynb_checkpoints
|
5 |
+
/notebooks/
|
app.py
CHANGED
@@ -134,4 +134,4 @@ username = os.getenv("USERNAME")
|
|
134 |
password = os.getenv("PASSWORD")
|
135 |
|
136 |
# Launch the interface
|
137 |
-
demo.launch(share=True, auth=(username, password))
|
|
|
134 |
password = os.getenv("PASSWORD")
|
135 |
|
136 |
# Launch the interface
|
137 |
+
demo.launch(share=True, auth=(username, password), debug=True)
|