diff options
-rw-r--r-- | dev-backend.ps1 | 3 | ||||
-rw-r--r-- | dev-frontend.ps1 | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/dev-backend.ps1 b/dev-backend.ps1 new file mode 100644 index 00000000..958ae75e --- /dev/null +++ b/dev-backend.ps1 @@ -0,0 +1,3 @@ +Push-Location $PSCommandPath/../Backend/Timeline
+dotnet run --launch-profile Dev
+Pop-Location
diff --git a/dev-frontend.ps1 b/dev-frontend.ps1 new file mode 100644 index 00000000..e004980d --- /dev/null +++ b/dev-frontend.ps1 @@ -0,0 +1,3 @@ +Push-Location $PSCommandPath/../FrontEnd
+pnpm run start
+Pop-Location
|