Skip to content
/ astuto Public

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

License

Notifications You must be signed in to change notification settings

astuto/astuto

Repository files navigation

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

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.

Get started

Hosted

We offer a hosted solution, so you don't have to provision your own server. This is the easiest and fastest way to get started: you can sign up and start collecting feedback in a few minutes.

Start your 7-day free trial without entering any payment method, then it's 15 €/month with annual subscription or 20 €/month with monthly subscription. Learn more on astuto.io.

With the paid plan:

  • You avoid deployment hassles like renting a server, issuing SSL certificates, configuring a mail server and managing updates
  • You get some OAuth providers out of the box: Google, Facebook and GitHub are ready to log your users in, no configuration needed
  • You get priority support
  • You support open source and get our eternal gratitude :)

Self-hosted

  1. Ensure you have Docker and Docker Compose installed
  2. Create an empty folder
  3. 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. You can find more information about env variables in the documentation.
  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.

Documentation

Check out docs.astuto.io to learn how to deploy Astuto, configure custom OAuth providers, customize appearance and more!

Contributing

There are many ways to contribute to Astuto, not just coding. Proposing features, reporting issues, translating to a new language or improving documentation are a few examples! Please read our contributing guidelines to learn more.

Credits

Astuto logo and all image assets are credited here.

A huge thank you to code contributors

and translation contributors!