Files
astuto/README.md

36 lines
2.8 KiB
Markdown
Raw Normal View History

2019-10-05 17:20:23 +02:00
# Astuto
2019-08-18 14:51:37 +02:00
2019-10-05 17:20:23 +02:00
Astuto is a free, open source, self-hosted customer feedback tool.
It has been heavely inspired by [Canny.io](https://canny.io/) ("astuto", indeed, is the italian translation of the word "canny").
2019-12-16 22:09:49 +01:00
If you are interested, you can check out a [demo of Astuto](http://116.203.226.196/).
2019-08-18 14:51:37 +02:00
2019-10-05 17:20:23 +02:00
## Requirements
2019-08-18 14:51:37 +02:00
2019-10-05 17:20:23 +02:00
* Docker (installation instructions [here](https://docs.docker.com/v17.09/engine/installation/))
* Docker Compose (installation instructions [here](https://docs.docker.com/compose/install/))
2019-08-18 14:51:37 +02:00
2019-10-05 17:20:23 +02:00
## Installation
2019-08-18 14:51:37 +02:00
2019-10-05 17:20:23 +02:00
1. Ensure that you have the required software installed.
2019-12-16 22:09:49 +01:00
2. Download Astuto by cloning this repo or from [here](#).
3. In the 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](https://github.com/riggraz/astuto/wiki/Required-environment-variables) for an explanation of the variables).
2019-10-05 17:20:23 +02:00
4. Run `script/docker-update-and-run.sh`.
2019-12-16 22:09:49 +01:00
5. You should now have a running instance of Astuto at `localhost:3000`. A default user account has been created with credentials email: `admin@example.com`, password: `password`.
2019-08-18 14:51:37 +02:00
2019-10-05 17:20:23 +02:00
## Post-installation notes
2019-08-18 14:51:37 +02:00
* **If you run into any problems take a look at the [common problems page](https://github.com/riggraz/astuto/wiki/Common-problems)**.
2019-10-05 17:20:23 +02:00
* 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 run `script/docker-update.sh` and then `script/docker-run.sh`. You can run them together with `script/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 that `script/docker-update-and-run.sh` takes more time to run than `script/docker-run.sh`.
* If you changed some environment variables in `.env` you have to restart the instance for these changes to take effect.
2019-08-18 14:51:37 +02:00
2019-10-05 17:20:23 +02:00
## Contributing
2019-08-18 14:51:37 +02:00
2019-10-06 15:08:26 +02:00
Astuto is licensed under the [GNU GPLv3](https://github.com/riggraz/astuto/blob/master/LICENSE) license. You are welcome to contribute:
2019-12-16 22:09:49 +01:00
* You can suggest new features from the [Astuto demo](http://116.203.226.196/).
* You can find a [todo list](https://github.com/riggraz/astuto/wiki/Improving-Astuto) of what we would like to work on next.
* You should take a look at the [contribution guidelines](https://github.com/riggraz/astuto/wiki/Contribution-Guidelines).
* You should take a look at the [technologies](https://github.com/riggraz/astuto/wiki/Technologies) used to build Astuto. If you know at least one of them you are welcome to contribute to Astuto's codebase!
2019-10-05 17:20:23 +02:00
* You can run the test suite by typing `rspec`.
2019-12-16 22:09:49 +01:00
* If you just have some suggestions you can [create an issue](https://github.com/riggraz/astuto/issues) or [email us directly](mailto:riccardo.graziosi97@gmail.com).