This commit removes the membersTabDescription, updates the deleteAccountDescription text in the localization files, and adds a condition to check permissions in account invitation component. It also includes test credentials in README and provides a significant amount of seed data for testing the database.
22 lines
709 B
Plaintext
22 lines
709 B
Plaintext
# This file is used to define environment variables for the development environment.
|
|
# These values are only used when running the app in development mode.
|
|
|
|
# SUPABASE
|
|
NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:54321
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0
|
|
|
|
## THIS IS FOR DEVELOPMENT ONLY - DO NOT USE IN PRODUCTION
|
|
SUPABASE_DB_WEBHOOK_SECRET=WEBHOOKSECRET
|
|
|
|
EMAIL_SENDER=test@makerkit.dev
|
|
EMAIL_PORT=54325
|
|
EMAIL_HOST=localhost
|
|
EMAIL_TLS=false
|
|
EMAIL_USER=user
|
|
EMAIL_PASSWORD=password
|
|
|
|
# STRIPE
|
|
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
|
|
|
|
# MAILER
|
|
MAILER_PROVIDER=nodemailer |