You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print.success(f"Backend scaffolded in {self.projectName}/src/backend")
346
+
print.success(f"Backend scaffolded in {self.projectID}/src/backend")
312
347
313
348
defstart(
314
349
projectName,
350
+
projectID,
315
351
domainSystem,
316
352
qtorgtk,
317
353
framework,
@@ -320,6 +356,7 @@ def start(
320
356
):
321
357
init=Initialize(
322
358
projectName,
359
+
projectID,
323
360
domainSystem,
324
361
qtorgtk,
325
362
framework,
@@ -332,19 +369,19 @@ def start(
332
369
init.startPython()
333
370
334
371
# yap yap
335
-
print.success(f"Project initialized in {projectName}")
336
-
print.log(f"Before you run the app, make sure you've installed the required dependencies at `{projectName}/src/frontend/`")
337
-
print.log(f"The reason why this wasn't installed automatically is because of subprocess being a bitch because it can't run `{packageManager} install` @ `{projectName}/src/frontend/`")
338
-
print.log(f"For python libraries @ `{projectName}/requirements.txt`, it's already installed in a virtual environment. Just activate it with `source venv/bin/activate` (Linux/macOS) or `venv\\Scripts\\activate` (Windows)")
372
+
print.success(f"Project initialized in {projectID}")
373
+
print.log(f"Before you run the app, make sure you've installed the required dependencies at `{projectID}/src/frontend/`")
374
+
print.log(f"The reason why this wasn't installed automatically is because of subprocess being a bitch because it can't run `{packageManager} install` @ `{projectID}/src/frontend/`")
375
+
print.log(f"For python libraries @ `{projectID}/requirements.txt`, it's already installed in a virtual environment. Just activate it with `source venv/bin/activate` (Linux/macOS) or `venv\\Scripts\\activate` (Windows)")
339
376
print.log("To run the app, use `python run.py test`. This command will build Vite, and then launch `window.py`.")
340
377
print.log("To open the already-built app directly, use `python window.py`.")
341
378
print.log("To compile the app, use `python run.py compile`. This command will build Vite and package `window.py` with PyInstaller.")
342
379
print.empty()
343
380
344
381
print.log("If you're lazy (like me), just copy this code below. This for macOS/Linux.")
345
-
print.log(f" cd {projectName}/src/frontend/ && {packageManager} install && cd ../.. && venv/bin/python run.py dev")
382
+
print.log(f" cd {projectID}/src/frontend/ && {packageManager} install && cd ../.. && venv/bin/python run.py dev")
346
383
print.log("For windows powershell.")
347
-
print.log(f" cd {projectName}\\src\\frontend\\ && {packageManager} install && cd ..\\.. && venv\\Scripts\\python run.py dev")
384
+
print.log(f" cd {projectID}\\src\\frontend\\ && {packageManager} install && cd ..\\.. && venv\\Scripts\\python run.py dev")
348
385
print.empty()
349
386
350
387
print.log("To compile after installing the frontend dependencies, run:")
0 commit comments