fix
Browse files- .vscode/settings.json +5 -0
- app.py +4 -0
.vscode/settings.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"python-envs.defaultEnvManager": "ms-python.python:conda",
|
| 3 |
+
"python-envs.defaultPackageManager": "ms-python.python:conda",
|
| 4 |
+
"python-envs.pythonProjects": []
|
| 5 |
+
}
|
app.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Placeholder app file for Hugging Face Spaces
|
| 2 |
+
# The actual application is run via Docker
|
| 3 |
+
if __name__ == "__main__":
|
| 4 |
+
print("This Space runs via Docker. See Dockerfile for details.")
|