Astuto

A free, open source, self-hosted customer feedback tool 🦊

Stars
1.55K
Forks
116
Open issues
56
Closed issues
48
Last commit
10 months ago
Watchers
1.55K
Total releases
0
Total commits
265
Open PRs
13
Closed PRs
113
Repo URL
Platform
License
gpl-3.0
Category
Offers premium version?
NO
Proprietary?
NO
About


What is Astuto?

Astuto is a free, open source, self-hosted customer feedback tool. It helps you collect, manage and prioritize feedback from your users. It has been heavely inspired by Canny.io ("astuto", indeed, is the italian translation of the word "canny").

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: admin@example.com, 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:

A huge thank you to all people who contributed:

Alternative Projects

Subscribe to Open Source Businees Newsletter

Twice a month we will interview people behind open source businesses. We will talk about how they are building a business on top of open source projects.

We'll never share your email with anyone else.