ArthurY commited on
Commit
c6dd01d
·
1 Parent(s): 9c1f6b8
Files changed (2) hide show
  1. .vscode/settings.json +5 -0
  2. 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.")