feat: založení základní stránky příjem/výdej + import a statistiky

This commit is contained in:
Ondřej Anděl
2026-09-07 14:58:49 +02:00
commit a5711f3e1e
98 changed files with 15505 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Spustí vývojové prostředí — server na 3001, klienta na 3000, každý ve svém okně.
$root = $PSScriptRoot
Start-Process powershell -ArgumentList @(
'-NoExit', '-Command',
"Set-Location '$root\server'; `$env:NODE_ENV='development'; yarn startReload"
)
Start-Process powershell -ArgumentList @(
'-NoExit', '-Command',
"Set-Location '$root\client'; yarn start"
)
Write-Host 'Server: http://localhost:3001, klient: http://localhost:3000'