Try the online demo!
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"). If you are interested, you can check out a demo of Astuto.
- Docker (installation instructions)
- Docker Compose (installation instructions)
Note: it is strongly suggested to run Astuto on Linux or macOS. As of today, Windows is likely to cause problems. If you want to try anyway, follow along with the Windows users installation guide.
- Ensure that you have the required software installed.
- Clone this repository.
- In Astuto's root directory, create a file named
.env
and fill it with the required environment variables (see.env-example
for an example and check this wiki page for an explanation of the variables). - Run
script/docker-update-and-run.sh
. - You should now have a running instance of Astuto at
localhost:3000
. A default user account has been created with credentials email:[email protected]
, password:password
.
- If you run into any problems take a look at the common problems page.
- When you want to launch Astuto you have to run
script/docker-run.sh
. If you installed new gems, packages or updated the database schema, you first need to runscript/docker-update.sh
and thenscript/docker-run.sh
. You can run them together withscript/docker-update-and-run.sh
. - You can always run
script/docker-update-and-run.sh
if unsure whether you should update or not. However, please note thatscript/docker-update-and-run.sh
takes more time to run thanscript/docker-run.sh
. - If you changed some environment variables in
.env
you have to restart the instance for these changes to take effect.
Astuto is licensed under the GNU GPLv3 license. You are welcome to contribute:
- Join the Discord channel to get in touch.
- You can find a todo list of what we would like to work on right now.
- You should take a look at the contribution guidelines.
- You should take a look at the technologies used to build Astuto.
- You can run the test suite by typing
rspec
inside theweb
container. Before you can runrspec
, you need to uncomment the Google Chrome installation lines indocker/app/Dockerfile
and run./script/docker-update-and-run.sh
. - If you just have some suggestions you can create an issue, email us directly or text us in our Discord server.
-
.envに必要な環境変数を設定
-
Dockerイメージをビルドする
% DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f docker-compose.development.yml build
- コンテナを起動する
% docker-compose -f docker-compose.development.yml up -d
- RailsがListenするまで待つ
% docker-compose -f docker-compose.development.yml logs -f web
- Go a head! http://localhost:3000