esc
Type to search the docs
Back to catalog

fider

Draft

Open-source community feedback platform

Feedback Homepage

Run locally

Terminal
$ npx launchfile up fider

Requires Docker Desktop. No source code needed — pulls pre-built images and starts fider with all dependencies.

Image: getfider/fider:stable
Launchfile View on GitHub
# yaml-language-server: $schema=https://launchfile.dev/schema/v1
version: launch/v1
name: fider
description: "Open-source community feedback platform"

image: getfider/fider:stable
provides:
  - protocol: http
    port: 3000
    exposed: true
requires:
  - type: postgres
    set_env:
      DATABASE_URL: $url
env:
  BASE_URL:
    required: true
    description: "Public URL (e.g. https://feedback.example.com)"
  JWT_SECRET:
    generator: secret
    sensitive: true
    description: "Secret used to sign JWT tokens"
  EMAIL_NOREPLY:
    required: true
    description: "Sender address for outbound emails"
  EMAIL_SMTP_HOST:
    required: true
    description: "SMTP server hostname"
  EMAIL_SMTP_PORT:
    default: "587"
  EMAIL_SMTP_USERNAME:
    description: "SMTP username (if authentication required)"
  EMAIL_SMTP_PASSWORD:
    sensitive: true
    description: "SMTP password"
  EMAIL_SMTP_ENABLE_STARTTLS:
    default: "true"
health: /api/health
restart: always

Test Results

Last Tested

2026-04-06

Health Check

Failing

Startup Time

107s

Total Disk

433 MB

Required Services

postgres

Learn More

Spec references for features used in this Launchfile.