7f59b94dcf
Rebrand repository from "Re:Link" to "Startover" across the codebase. Updates include package names and scopes (@relink/* -> @startover/*), import paths, Next.js transpile settings, vitest name, UI text and docs, Dockerfile and CI/workflow names, deploy scripts and repo paths, and example/production env values. Also add auth-related env vars, an apps/web .env symlink, and small formatting/typing cleanups in several TSX/TS files and tests to accommodate the rename.
20 lines
451 B
Bash
20 lines
451 B
Bash
# ===========================================
|
|
# Startover Production Environment Variables
|
|
# Copy to .env.production and fill in values
|
|
# ===========================================
|
|
|
|
# Database
|
|
DB_USER=startover
|
|
DB_PASSWORD=CHANGE_ME_STRONG_PASSWORD
|
|
DB_NAME=startover_prod
|
|
|
|
# Redis
|
|
REDIS_PASSWORD=CHANGE_ME_STRONG_PASSWORD
|
|
|
|
# NextAuth
|
|
NEXTAUTH_URL=http://your-domain.com
|
|
NEXTAUTH_SECRET=GENERATE_WITH_openssl_rand_base64_32
|
|
|
|
# App
|
|
NODE_ENV=production
|