Spaces:
Runtime error
Runtime error
create run.py
Browse files
run.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
|
| 3 |
+
from roop import core
|
| 4 |
+
share=True
|
| 5 |
+
def run():
|
| 6 |
+
args = parse_args()
|
| 7 |
+
roop.globals.CFG.server_share = args.share # <-- toggle share here
|
| 8 |
+
...
|
| 9 |
+
if __name__ == "__main__":
|
| 10 |
+
core.run()
|
| 11 |
+
|