37 lines
1.1 KiB
Markdown
37 lines
1.1 KiB
Markdown
# Formbricks
|
|
|
|
Formbricks is an open-source survey and feedback platform for building in-app microsurveys, NPS scores, and user research forms.
|
|
|
|
## Dependencies
|
|
|
|
- **PostgreSQL** - Database for storing surveys and responses
|
|
- **Redis** - Used for caching and background jobs
|
|
|
|
## Configuration
|
|
|
|
Key settings in `config.yaml`:
|
|
|
|
- **domain** - Where Formbricks will be accessible
|
|
- **storage** - Persistent volume size (default: `2Gi`)
|
|
- **db.name** - Database name (default: `formbricks`)
|
|
|
|
## First-Time Setup
|
|
|
|
1. Add and deploy the app:
|
|
```bash
|
|
wild app add formbricks
|
|
wild app deploy formbricks
|
|
```
|
|
|
|
2. Visit the app URL and sign up to create your admin account.
|
|
|
|
3. The first user to sign up becomes the organization owner.
|
|
|
|
4. Create your first survey from the dashboard and embed it in your apps using the provided JavaScript snippet.
|
|
|
|
## Notes
|
|
|
|
- Formbricks can be embedded in web apps or used as a standalone survey link
|
|
- The `nextauthSecret` and `encryptionKey` are auto-generated in `secrets.yaml`
|
|
- The `cronSecret` secures the internal cron endpoint used for scheduled tasks
|