mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 14:08:42 -05:00
0aa931287f
* update prisma model to support user * add signup page * add email verification * remove seed user * update README and Dockerfile to support signup and the removal of seed data
14 lines
435 B
Bash
14 lines
435 B
Bash
# Modify this variables according to your setup and needs
|
|
SECRET=RANDOM_STRING
|
|
DATABASE_URL='postgresql://user@localhost:5432/snoopforms?schema=public'
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
MAIL_FROM=noreply@example.com
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=smtpUser
|
|
SMTP_PASSWORD=smtpPassword
|
|
|
|
# For Docker Setup use this Database URL:
|
|
# DATABASE_URL='postgresql://postgres:postgres@postgres:5432/snoopforms?schema=public'
|