Add notes module
This commit is contained in:
@@ -76,6 +76,18 @@ $env:PLAYWRIGHT_STORAGE_STATE='tests/.auth/dev-user.json'
|
||||
pnpm test:e2e
|
||||
```
|
||||
|
||||
After validation, tear down services started for the test run unless you are intentionally keeping the app open:
|
||||
|
||||
```powershell
|
||||
# Stop a manually started Next dev server if one is still running on port 3000.
|
||||
Get-NetTCPConnection -LocalPort 3000 -State Listen -ErrorAction SilentlyContinue |
|
||||
Select-Object -ExpandProperty OwningProcess -Unique |
|
||||
ForEach-Object { Stop-Process -Id $_ }
|
||||
|
||||
# Stop the local database container when the session is finished.
|
||||
docker compose -f docker-compose.dev.yaml down
|
||||
```
|
||||
|
||||
## Production Removal Plan
|
||||
|
||||
Before production deployment, complete the checklist below.
|
||||
|
||||
Reference in New Issue
Block a user