Favicon of ClearFlask

ClearFlask

Collect customer feedback, prioritize features, and share your product roadmap. This open-source platform helps you build products your users actually want.

Gathering and organizing user input is critical for building successful products. This open-source feedback management platform provides a comprehensive suite of tools to capture ideas, prioritize development, and communicate progress. With built-in AI capabilities, you can easily interact with your customer feedback to extract valuable insights and identify the most requested features. Choose between a hassle-free cloud offering or self-host the application to maintain complete control over your data.

Key benefits include:

  • Centralized Feedback: Ask customers for input directly through website integrations and extract valuable ideas.
  • Actionable Task Conversion: Analyze feedback, validate ideas, and prioritize your product roadmap based on real user needs.
  • Transparent Communication: Share your progress with a public roadmap, post announcements, and allow users to subscribe to updates.
  • Flexible Deployment: Opt for scalable cloud hosting or a fully open-source self-hosted solution.

Directory Structure

clearflask
data
clearflask
dynamodb
elasticsearch
.env
docker-compose.yml

docker-compose.yml

services:
  clearflask:
    image: clearflask/clearflask:latest
    container_name: clearflask
    restart: always
    ports:
      - "8080:8080"
    environment:
      - CLEARFLASK_BIN_TYPE=docker
      - AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
      - AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
      - AWS_REGION=${AWS_REGION}
    volumes:
      - ./data/clearflask:/var/lib/clearflask
    depends_on:
      - dynamodb
      - elasticsearch

  dynamodb:
    image: amazon/dynamodb-local:latest
    container_name: clearflask_dynamodb
    command: "-jar DynamoDBLocal.jar -sharedDb -dbPath /home/dynamodblocal/data"
    restart: always
    working_dir: /home/dynamodblocal
    environment:
      - AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
      - AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
      - AWS_REGION=${AWS_REGION}
    volumes:
      - ./data/dynamodb:/home/dynamodblocal/data

  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:7.17.9
    container_name: clearflask_elasticsearch
    restart: always
    environment:
      - discovery.type=single-node
      - xpack.security.enabled=false
      - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
    volumes:
      - ./data/elasticsearch:/usr/share/elasticsearch/data

.env

AWS_ACCESS_KEY_ID=key
AWS_SECRET_ACCESS_KEY=secret
AWS_REGION=us-east-1
Categories:

Share:

Ad
Favicon

 

  
 

Similar to ClearFlask

Favicon

 

  
  
Favicon

 

  
  
Favicon