# Fider • [Fider](https://fider.io/) is a platform for collecting and prioritizing project feedback that enables users to share in the process. # Overview [](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-09-at-20-50-10.png) [Fider](https://fider.io/) is a platform for collecting and prioritizing project feedback that enables users to share in the process.
Tryout an [Fider demo](https://demo.fider.io/).
- Help your community share feedback, vote on what's important to them and discuss the finer points. - Keep everyone up-to-date when you start or complete a feature based on community feedback. - Customize with your own CSS or integrate with your existing communication services. # Media ## ScreenshotsFider v0.24.0
[](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-09-at-20-50-10.png) | [](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-09-at-20-50-18.png) | [](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-09-at-20-50-47.png) |
[](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-09-at-20-53-16.png) |
Ensure your user has permissions to access the folder.
*For example:* fider\_admin
*For example:* fider.example.com
*For example:* noreply@fider.example.com
*For example:* smtp.gmail.com
*For example:* 587
*For example:* example@gmail.com
*Recommended:* true
Keep these securely stored in a password manager, such as [VaultWarden](https://hub.subspace.services/books/vaultwarden "VaultWarden").
It is important to use secure, randomly generated password.
You can use a random alphanumeric string from a password manager, or open the terminal and run the command: ``` tr -dc 'A-Za-z0-9!"#$%&'\''()*+,-./:;<=>?@[\]^_`{|}~'It is important to use secure, randomly generated token.
You can use a random alphanumeric string from a password manager, or open the terminal and run the command: ``` tr -dc 'A-Za-z0-9!'When possible, you should use app passwords.
Learn about [creating a new stack](https://hub.subspace.services/books/portainer/page/creating-a-new-stack "Creating a New Stack").
## Docker Compose Use the following code to install the service: ```yaml --- services: db: restart: always image: postgres:12 volumes: - /srv/fider/db:/var/lib/postgresql/data environment: POSTGRES_USER: ${DB_USER} POSTGRES_PASSWORD: ${DB_PASS} fider: restart: always image: getfider/fider:stable ports: - "3380:3000" environment: BASE_URL: ${BASE_URL} DATABASE_URL: ${DB_URL} JWT_SECRET: ${JWT_SECRET} EMAIL_NOREPLY: ${EMAIL_NOREPLY} EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST} EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT} EMAIL_SMTP_USERNAME: ${EMAIL_SMTP_USERNAME} EMAIL_SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD} EMAIL_SMTP_ENABLE_STARTTLS: ${EMAIL_SMTP_ENABLE_STARTTLS} ``` ## Environment Use the following environment to configure the service using the values prepared earlier: ```bash DB_USER= DB_PASS= BASE_URL= DATABASE_URL=postgres://fider:${DB_PASS}@db:5432/fider?sslmode=disable JWT_SECRET= EMAIL_NOREPLY= EMAIL_SMTP_HOST= EMAIL_SMTP_PORT= EMAIL_SMTP_USERNAME= EMAIL_SMTP_PASSWORD= EMAIL_SMTP_ENABLE_STARTTLS= ``` # UpdatingBackup and Re-Deploy the Stack
This service has been optimized for running in Docker. This allows you to [re-deploy the stack through Portainer](https://hub.subspace.services/books/portainer/page/updating-a-stack "Updating a Stack") to download the latest updates. It is highly recommended that you manual backup data before installing any updates in the event that there are upgrade errors. # User Manual # DevelopmentThis software is released under the [AGPL-3.0 license](https://opensource.org/license/agpl-3-0).
You can learn more about how to contribute to Fider through their [GitHub](https://github.com/getfider/fider/blob/main/CONTRIBUTING.md). The development team also accepts [sponsorships](https://opencollective.com/fider). # Resources ## Official - [Official Documentation](https://docs.fider.io/) - [Official Forum](https://github.com/getfider/fider/discussions) - [Official GitHub Repository](https://github.com/getfider/fider) - [Official Website](https://fider.io/) - [Installation Guide](https://docs.fider.io/hosting-instance)