Files
astuto/README.md

93 lines
4.0 KiB
Markdown
Raw Normal View History

<p align="center">
<a href="https://astuto.io/?utm_campaign=github_logo&utm_source=github.com">
<img width="400" src="./images/logo-and-name.png" />
</a>
</p>
2019-12-19 15:31:03 +01:00
<p align="center">
2024-02-22 19:06:17 +01:00
<a href="https://www.producthunt.com/posts/astuto?utm_source=badge-top-post-badge&utm_medium=badge&utm_souce=badge-astuto" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=179870&theme=neutral&period=daily" alt="Astuto - An open source customer feedback tool 🦊 | Product Hunt Embed" style="width: 250px; height: 54px;" width="250px" height="54px" /></a>
2024-02-18 15:09:25 +01:00
<br>
2024-02-22 19:06:17 +01:00
<h3 align="center">
<a href="https://feedback.astuto.io/">✨ Try it out</a>
&nbsp;•&nbsp;
<a href="https://astuto.io/?utm_campaign=github_learnmore&utm_source=github.com">📖 Learn more</a>
2024-02-22 19:06:17 +01:00
</h3>
2019-12-19 15:31:03 +01:00
</p>
2019-08-18 14:51:37 +02:00
2024-02-18 15:09:25 +01:00
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.
2019-08-18 14:51:37 +02:00
2024-02-22 19:06:17 +01:00
<a href="https://feedback.astuto.io/">
<img src="./images/hero-image.png" />
</a>
2020-07-26 16:34:09 +02:00
## Get started
2020-07-26 16:34:09 +02:00
### Hosted
2020-01-13 11:10:14 +01:00
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.
2019-08-18 14:51:37 +02:00
[Start your 7-day free trial](https://login.astuto.io/signup) without entering any payment method, then it's 15 €/month with annual subscription or 20 €/month with monthly subscription. [Learn more on astuto.io](https://astuto.io/?utm_campaign=github_getstarted&utm_source=github.com).
With the paid plan:
2019-08-18 14:51:37 +02:00
- 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 :)
2019-08-18 14:51:37 +02:00
2024-07-16 20:18:44 +02:00
### Self-hosted
2022-09-15 17:15:12 +02:00
2024-07-16 20:18:44 +02:00
Read the [Deploy with Docker instructions](https://docs.astuto.io/deploy-docker) for the most comprehensive and up to date guide on installing and configuring Astuto.
What you find below are minimal instructions to get you started as quickly as possible:
0. Ensure you have Docker and Docker Compose installed
2022-09-15 17:15:12 +02:00
1. Create an empty folder
2. Inside that folder, create a `docker-compose.yml` file with the following content:
```
services:
db:
image: postgres:14.5
2024-07-16 20:18:44 +02:00
environment: &db-env
2022-09-15 17:15:12 +02:00
POSTGRES_USER: yourpostgresusername
POSTGRES_PASSWORD: yourpostgrespassword
volumes:
- dbdata:/var/lib/postgresql/data
web:
image: riggraz/astuto:latest
environment:
2024-07-16 20:18:44 +02:00
<<: *db-env
2022-09-15 17:15:12 +02:00
BASE_URL: http://yourwebsite.com
SECRET_KEY_BASE: yoursecretkeybase
ports:
- "3000:3000"
depends_on:
- db
volumes:
dbdata:
```
2024-07-16 20:18:44 +02:00
3. Edit the environment variables to fit your needs. You can find more information about env variables in the [documentation](https://docs.astuto.io/deploy-docker/#2-edit-environment-variables).
4. Run `docker compose pull && docker compose up`
5. 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`.
## Documentation
2022-09-15 17:15:12 +02:00
Check out [docs.astuto.io](https://docs.astuto.io/) to learn how to deploy Astuto, configure custom OAuth providers, customize appearance and more!
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
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](https://github.com/riggraz/astuto/blob/main/CONTRIBUTING.md) to learn more.
2022-06-13 15:04:57 +02:00
2024-02-18 15:09:25 +01:00
## Credits
Astuto logo and all image assets are credited [here](https://astuto.io/credits).
2024-02-18 15:09:25 +01:00
A huge thank you to code contributors
2022-06-13 15:04:57 +02:00
<a href="https://github.com/riggraz/astuto/graphs/contributors">
<img src="https://contrib.rocks/image?repo=riggraz/astuto" />
</a>
and [translation contributors](https://crowdin.com/project/astuto/members)!