Boka73 commited on
Commit
4adfb59
·
verified ·
1 Parent(s): 6e0f05c

create run.py

Browse files
Files changed (1) hide show
  1. run.py +11 -0
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
+