()
| 56 | Thread(target=open_browser, daemon=True).start() |
| 57 | |
| 58 | def install(): |
| 59 | print("Installing frontend...") |
| 60 | frontend_dir = os.path.join(os.getcwd(), "frontend") |
| 61 | subprocess.check_call("npm install && npm run build", shell=True, cwd=frontend_dir) |
| 62 | |
| 63 | def print_frontend_run_message(): |
| 64 | print("Starting frontend server at http://localhost:3000/") |
no test coverage detected