Riccardo Graziosi 26a84f2202 Update vulnerable dependencies (#153)
* Bump async from 2.6.3 to 2.6.4 (#104)
* Bump eventsource from 1.0.7 to 1.1.1 (#113)
* Bump terser from 4.4.3 to 4.8.1 (#138)
* Bump tzinfo from 1.2.9 to 1.2.10 (#139)
2022-10-14 11:44:23 +02:00
2022-09-22 14:20:11 +02:00
2022-09-15 17:15:12 +02:00
2022-09-22 14:20:11 +02:00
2022-08-05 18:15:17 +02:00
2020-07-26 16:34:09 +02:00
2019-08-18 14:51:37 +02:00
2019-08-18 14:51:37 +02:00
2022-09-15 17:15:12 +02:00
2022-08-05 18:15:17 +02:00
2019-08-18 14:51:37 +02:00
2019-08-18 15:03:33 +02:00
2021-01-30 11:40:05 +01:00
2019-08-18 14:51:37 +02:00
2022-07-23 13:32:40 +02:00
2022-09-15 17:15:12 +02:00
2022-09-15 17:15:12 +02:00
2019-10-05 17:32:08 +02:00
2022-08-22 10:38:03 +02:00
2019-09-05 17:47:41 +02:00
2019-08-18 14:51:37 +02:00
2022-09-15 17:15:12 +02:00
2022-06-06 20:20:03 +02:00

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

Try the demo out

To login as administrator:
email: admin@example.com | pass: password

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

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.

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:

Description
A free, open source, self-hosted customer feedback tool 🦊
Readme AGPL-3.0 6.7 MiB
Languages
TypeScript 48.4%
Ruby 42%
HTML 5.2%
SCSS 3.5%
Dockerfile 0.4%
Other 0.5%