FeedbackFusion is a cloud-native application meticulously crafted for seamless compatibility with Kubernetes. It is designed to efficiently collect and manage user feedback at a large scale.
-
Cloud-native and Kubernetes-compatible: The application operates in a fully stateless manner (except for the database connection), ensuring smooth integration into Kubernetes environments.
-
Support for Multiple Databases: Utilizing the rbatis ORM, FeedbackFusion supports a variety of databases, including MySQL, MariaDB, PostgreSQL, and MSSQL.
-
High-Scale Feedback Collection: Engineered for high scalability, the application leverages gRPC for efficient, high-performance communication, enabling the collection of large volumes of user feedback.
-
Universal Frontend: The frontend is built on the lit library and adheres to Open-WC standards, providing flexibility and independence from specific frameworks.
helm repo add feedback-fusion https://onelitefeathernet.github.io/feedback-fusion
helm install feedback-fusion feedback-fusion/feedback-fusion
docker run --name feedback-fusion ghcr.io/onelitefeathernet/feedback-fusion
FeedbackFusion is licensed under the MIT License.
- just
- pre-commit
- pnpm
- helm
- cargo
- docker
- cargo-release
just init
You can run the unittests via
just unittest
The integration tests are executed for each database backend on its own therefore you can either do it for only one:
just test postgres # possible values: postgres, mariadb, mysql, mssql, skytable (this uses postgres and skytable caching)
or you can executed all of them:
just # or `just test-all`
just lib-dev
just dashboard-dev