mirror of
https://github.com/ClovertaTheTrilobita/cellpose-web.git
synced 2026-04-01 23:14:50 +00:00
10 lines
No EOL
234 B
Python
10 lines
No EOL
234 B
Python
from cp_run import Cprun
|
|
from flaskApp import run_flask
|
|
from multiprocessing import Process
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Cprun.run_test()
|
|
p = Process(target=run_flask)
|
|
p.start()
|
|
print(f"Flask running in PID {p.pid}") |