Managing feature requests across emails and spreadsheets quickly becomes chaotic. This platform provides a centralized board where customers can submit feedback, suggest features, and vote on product direction. By crowdsourcing your roadmap, you gain clear visibility into what users truly value.
Setup takes just minutes, allowing you to customize the board and share it via email, social media, or in-app notifications. It works perfectly for SaaS businesses and game developers who want to build products people actually want. You can also use it internally to organize team ideas.
Key benefits include:
services:
db:
image: postgres:15-alpine
restart: always
volumes:
- ./data/db:/var/lib/postgresql/data
environment:
POSTGRES_USER: fider
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: fider
app:
image: getfider/fider:stable
restart: always
ports:
- 3000:3000
environment:
GO_ENV: production
DATABASE_URL: postgres://fider:${DB_PASSWORD}@db:5432/fider?sslmode=disable
JWT_SECRET: ${JWT_SECRET}
EMAIL_NOREPLY: ${EMAIL_NOREPLY}
EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST}
EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT}
EMAIL_SMTP_USER: ${EMAIL_SMTP_USER}
EMAIL_SMTP_PASS: ${EMAIL_SMTP_PASS}
BASE_URL: ${BASE_URL}
depends_on:
- dbDB_PASSWORD=change_me_to_a_secure_password
JWT_SECRET=change_me_to_a_random_secret_string
BASE_URL=http://localhost:3000
# Email Configuration (Required for Sign In/Sign Up)
EMAIL_NOREPLY=noreply@example.com
EMAIL_SMTP_HOST=smtp.example.com
EMAIL_SMTP_PORT=587
EMAIL_SMTP_USER=your_smtp_user
EMAIL_SMTP_PASS=your_smtp_passwordAuto-fetched about 24 hours ago
Auto-fetched about 24 hours ago