Favicon of Fider

Fider

Gather customer feedback and feature requests in one public board. Let users submit ideas and vote on your product direction to build what they truly want.

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:

  • Centralized feedback: Keep all feature requests in one easily accessible location.
  • User voting system: Allow customers to upvote ideas, making prioritization effortless.
  • Quick setup: Get your customized feedback board running in under five minutes.
  • Generous free tier: Manage up to 250 feedback items with unlimited users at no cost.

Directory Structure

fider
data
.env
docker-compose.yml

docker-compose.yml

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:
      - db

.env

DB_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_password
Categories:

Share:

Ad
Favicon

 

  
 

Similar to Fider

Favicon

 

  
  
Favicon

 

  
  
Favicon