npx express-generator --no-view --git ./
- delete all folders bin, public, routes
arcjet upstash swagger usebruno
you will create evv file called .env.development.local or .env.production.local
have next vars
PORT=""
NODE_ENV=""
DB_URI=""
JWT_SECRET=""
JWT_EXPIRES_IN=""
Generate JWT_SECRET with next easy command
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"