Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mahiatlinux
/
test1234
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
mahiatlinux
commited on
May 2, 2024
Commit
34c4057
·
verified
·
1 Parent(s):
2128776
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import subprocess
2
+
3
+
def main():
4
+
# Run the command
5
+
subprocess.run(["node", "./src/index.js"])
6
+
7
+
if __name__ == "__main__":
8
+
main()