diff options
author | crupest <crupest@outlook.com> | 2023-09-05 23:14:04 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-05 23:14:04 +0800 |
commit | 1f61c7def5da5601bb332fb35225bc04500e0575 (patch) | |
tree | c4c0da3a808d938361001d4850d45f38251f02e8 | |
parent | 4f2c334684e41742edfa7c56cee70468d60fcc56 (diff) | |
download | timeline-1f61c7def5da5601bb332fb35225bc04500e0575.tar.gz timeline-1f61c7def5da5601bb332fb35225bc04500e0575.tar.bz2 timeline-1f61c7def5da5601bb332fb35225bc04500e0575.zip |
Add dev scripts for windows.
-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
|