First local setup
Install the app, create the private environment file, migrate PostgreSQL, seed the administrator, and start Next.js.
npm install
Copy-Item .env.example .env
npm run db:migrate
$env:ADMIN_INITIAL_PASSWORD="<temporary-password>"
npm run db:seed
Remove-Item Env:ADMIN_INITIAL_PASSWORD
npm run dev
