- Deleted `pnpm-workspace.yaml` as it is no longer needed. - Removed `apply-migrations.sh` script that handled database migrations. - Eliminated `generate-full-stack-env.mjs` script for environment variable generation. - Deleted `selfhost-backup.sh` script for creating backups of the self-hosted environment. - Removed `selfhost-doctor.sh` script for health checks of the self-hosted services. - Deleted `selfhost-restore.sh` script for restoring backups in the self-hosted environment.
15 lines
471 B
Bash
15 lines
471 B
Bash
# Public URL where users open Neta.
|
|
NEXT_PUBLIC_SITE_URL=http://localhost:3000
|
|
|
|
# Supabase project API URL, for example:
|
|
# https://your-project-ref.supabase.co
|
|
NEXT_PUBLIC_SUPABASE_URL=
|
|
|
|
# Supabase anon/public key.
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=
|
|
|
|
# Supabase service role key. Required for creating the first admin,
|
|
# creating client portal users, and server-side storage uploads.
|
|
# Keep this secret. Never expose it with a NEXT_PUBLIC_ prefix.
|
|
SUPABASE_SERVICE_ROLE_KEY=
|