Git Product home page Git Product logo

Astuto - An open source customer feedback tool 🦊 | Product Hunt Embed

What is Astuto?

Astuto is an open source customer feedback tool. It helps you collect, manage and prioritize feedback from your customers, so you can build a better product.

Features

  • Collect and manage feedback
  • Create custom boards and statuses, to better organize feedback
  • Customize your roadmap, to let your users know what you're working on
  • Many more...

Requirements

  • Docker
  • Docker Compose

You can install Docker Desktop which includes everything you need to run Astuto. If you are on Linux, you may instead install Docker Engine, Docker CLI and then install the Docker Compose Plugin.

Installation

DockerHub image (fastest, for production)

  1. Create an empty folder
  2. Inside that folder, create a docker-compose.yml file with the following content:
version: '3.4'
services:
  db:
    image: postgres:14.5
    environment:
      POSTGRES_USER: yourpostgresusername
      POSTGRES_PASSWORD: yourpostgrespassword
    volumes:
      - dbdata:/var/lib/postgresql/data
  web:
    image: riggraz/astuto:latest
    environment:
      POSTGRES_USER: yourpostgresusername
      POSTGRES_PASSWORD: yourpostgrespassword
      BASE_URL: http://yourwebsite.com
      SECRET_KEY_BASE: yoursecretkeybase
    ports:
      - "3000:3000"
    depends_on:
      - db
    
volumes:
  dbdata:
  1. Edit the environment variables to fit your needs
  2. Run docker compose pull
  3. Run docker compose up
  4. You should now have a running instance of Astuto on port 3000. A default user account has been created with credentials email: [email protected], password: password.

Note: if you are on Linux and you encounter permission denied errors when running Docker commands, try to run them as administrator.

GitHub repository (for development)

Note: this installation method is suggested for developers and contributors. If you just want to deploy your Astuto instance or try it out, we recommend to follow the above DockerHub installation instructions.

See contributing guidelines.

Contributing

You are welcome to contribute:

Credits

Astuto logo created by Freepik Flaticon.

A huge thank you to all people who contributed:

astuto's Projects

astuto doesn’t have any public repositories yet.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.