diff --git a/.env.example b/.env.example index 71a7c4d..2250d62 100644 --- a/.env.example +++ b/.env.example @@ -9,7 +9,7 @@ DATABASE_URL="postgresql://turbostarter:turbostarter@localhost:5432/core" # The name of the product. This is used in various places across the apps. -PRODUCT_NAME="TurboStarter" +PRODUCT_NAME="claudemesh" # The url of the web app. Used mostly to link between apps. URL="http://localhost:3000" diff --git a/.env.production.example b/.env.production.example index 82c7d5e..7447340 100644 --- a/.env.production.example +++ b/.env.production.example @@ -30,7 +30,7 @@ BETTER_AUTH_TRUSTED_ORIGINS="https://your-app.example.com" # ── PRODUCT ────────────────────────────────────────────────── -# [OPTIONAL] App display name (default: "TurboStarter") +# [OPTIONAL] App display name (default: "claudemesh") NEXT_PUBLIC_PRODUCT_NAME="MyApp" # [OPTIONAL] Contact email shown in the app diff --git a/DEPLOY.md b/DEPLOY.md index b442b6e..ca5e3cb 100644 --- a/DEPLOY.md +++ b/DEPLOY.md @@ -189,7 +189,7 @@ pkill -f "ssh -f -N -L 5440" ## Step 7: Verify Open your app URL. Sign in with: -- Email: value of `SEED_EMAIL` (default: `me@turbostarter.dev`) +- Email: value of `SEED_EMAIL` (default: `dev@example.com`) - Password: value of `SEED_PASSWORD` (default: `Pa$$w0rd`) --- diff --git a/README.md b/README.md index e4d41e9..4c72636 100644 --- a/README.md +++ b/README.md @@ -196,8 +196,8 @@ After `pnpm services:setup`: | Role | Email | Password | |-------|-------------------------------|------------| -| User | `me+user@turbostarter.dev` | `Pa$$w0rd` | -| Admin | `me+admin@turbostarter.dev` | `Pa$$w0rd` | +| User | `dev+user@example.com` | `Pa$$w0rd` | +| Admin | `dev+admin@example.com` | `Pa$$w0rd` | ### Common commands diff --git a/apps/web/.env.example b/apps/web/.env.example index e1f0ae6..e78ad79 100644 --- a/apps/web/.env.example +++ b/apps/web/.env.example @@ -49,7 +49,7 @@ GITHUB_CLIENT_SECRET="" # Seed config (used for accounts in development environment) -SEED_EMAIL="me@turbostarter.dev" +SEED_EMAIL="dev@example.com" SEED_PASSWORD="Pa\$\$w0rd"