43 lines
953 B
Plaintext
43 lines
953 B
Plaintext
DATABASE_URL=postgresql://username:password@host:5450/typebot?schema=public
|
|
|
|
SECRET=secret
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
# Used for email auth and email notifications
|
|
EMAIL_SERVER_USER=username
|
|
EMAIL_SERVER_PASSWORD=password
|
|
EMAIL_SERVER_HOST=smtp.example.com
|
|
EMAIL_SERVER_PORT=587
|
|
EMAIL_FROM=noreply@example.com
|
|
|
|
# Storage
|
|
# Used for uploading images, videos, etc...
|
|
S3_UPLOAD_KEY=
|
|
S3_UPLOAD_SECRET=
|
|
S3_UPLOAD_REGION=
|
|
S3_UPLOAD_BUCKET=
|
|
|
|
# Auth
|
|
# (Optional) Used to login using GitHub
|
|
GITHUB_CLIENT_ID=
|
|
GITHUB_CLIENT_SECRET=
|
|
|
|
# (Optional) Used to login using Google AND Google Sheets integration
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
|
|
# (Optional) Used to login using Facebook
|
|
FACEBOOK_CLIENT_ID=
|
|
FACEBOOK_CLIENT_SECRET=
|
|
|
|
# (Optional) Subscription Payment
|
|
NEXT_PUBLIC_STRIPE_PUBLIC_KEY=
|
|
STRIPE_SECRET_KEY=
|
|
STRIPE_WEBHOOK_SECRET=
|
|
|
|
# (Optional) Used for GIF search
|
|
NEXT_PUBLIC_GIPHY_API_KEY=
|
|
|
|
# (Optional) for e2e tests
|
|
GOOGLE_REFRESH_TOKEN_TEST=
|