Chartbrew: Open-Source Platform for Live Reporting Dashboards

This repository profile is provided by osrepos.com, an open source repository discovery platform.

Chartbrew: Open-Source Platform for Live Reporting Dashboards

Summary

Chartbrew is an open-source web platform designed for creating powerful, live reporting dashboards. It connects directly to various data sources like APIs, MongoDB, MySQL, and PostgreSQL. Users can build beautiful charts, organize them into editable dashboards, and embed them into other applications, making it a versatile tool for data visualization and monitoring.

Repository Information

Analyzed by OSRepos on October 21, 2025

Topics

Click on any tag to explore related repositories

Use at your own risk

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.

Introduction

Chartbrew is an open-source web platform designed for creating powerful, live reporting dashboards. It allows users to connect directly to a wide array of data sources, including various APIs, MongoDB, Firestore, MySQL, and PostgreSQL. With Chartbrew, you can build beautiful charts, organize them into editable dashboards, and even embed them into other applications, offering a comprehensive solution for data visualization and monitoring.

Installation

Getting Chartbrew up and running is straightforward, with options for local development and deployment.

Local Setup:

To set up Chartbrew locally, you will need NodeJS v20, MySQL (5+) or PostgreSQL (12.5+), and Redis (v6+).

  1. Clone the repository:
    git clone https://github.com/chartbrew/chartbrew.git
    cd chartbrew && npm run setup
    
  2. Configure environment variables in chartbrew/.env.
  3. Run the frontend and backend in separate terminals:
    # frontend
    cd client/
    npm run start
    
    # backend
    cd server/
    npm run start-dev
    

    Access the application at http://localhost:4018.

Docker Deployment:

Chartbrew also provides a Docker image for easy deployment. Ensure you have a MySQL server and an empty database ready.

docker pull razvanilin/chartbrew

docker run -p 4019:4019 -p 4018:4018 \
  -e CB_ENCRYPTION_KEY=your_32_bytes_key \
  -e CB_API_HOST=0.0.0.0 \
  -e CB_API_PORT=4019 \
  -e CB_DB_HOST=host.docker.internal \
  -e CB_DB_PORT=3306 \
  -e CB_DB_NAME=chartbrew \
  -e CB_DB_USERNAME=root \
  -e CB_DB_PASSWORD=password \
  -e CB_REDIS_HOST=host.docker.internal \
  -e CB_REDIS_PORT=6379 \
  -e CB_REDIS_PASSWORD=password \
  -e VITE_APP_CLIENT_HOST=http://localhost:4018 \
  -e VITE_APP_CLIENT_PORT=4018 \
  -e VITE_APP_API_HOST=http://localhost:4019 \
  razvanilin/chartbrew

For more detailed instructions, refer to the official documentation and Docker deployment guide.

Examples

With Chartbrew, you can:

  • Build interactive and customizable charts from diverse data sources using its intuitive chart builder.
  • Create dynamic and editable dashboards to monitor key metrics in real-time.
  • Embed individual charts or entire dashboards into external websites or applications.
  • Utilize the powerful query and requests editor to fetch and manipulate data before visualization.
  • Collaborate with teams on dashboard creation and data analysis.

Why Use Chartbrew?

Chartbrew stands out as an excellent choice for several reasons:

  • Open-Source Flexibility: Being open-source, it offers transparency, customization, and the ability to self-host, giving you full control over your data and infrastructure.
  • Broad Data Source Compatibility: It supports a wide range of databases and APIs, making it highly adaptable to various tech stacks.
  • Comprehensive Feature Set: From a robust chart builder to editable dashboards, embeddable charts, and team capabilities, Chartbrew provides all the tools needed for effective data visualization.
  • Active Community: With active discussions and a Discord channel, users can find support and contribute to its ongoing development.

Links

Related repositories

Similar repositories that may be relevant next.

Agent-Memory: Persistent Memory for AI Coding Agents

Agent-Memory: Persistent Memory for AI Coding Agents

August 16, 2026

Agent-Memory provides persistent memory for AI coding agents, ensuring they remember past interactions and learned patterns across sessions. Built on the iii engine, it eliminates the need for re-explaining context, significantly improving agent efficiency and reducing token usage. This solution integrates seamlessly with various agents, offering a robust memory management system.

AIAgent MemoryLLM
Flask-Assets: Seamless Asset Management for Flask Applications

Flask-Assets: Seamless Asset Management for Flask Applications

July 26, 2026

Flask-Assets provides robust integration of the `webassets` library with Flask. It simplifies the process of merging, minifying, and compiling CSS and JavaScript files, significantly enhancing web application performance and streamlining development workflows.

PythonFlaskWeb Development
webassets: Asset Management for Python Web Development

webassets: Asset Management for Python Web Development

July 26, 2026

webassets is a robust library designed for asset management in Python web development. It simplifies the process of merging and compressing JavaScript and CSS files, enhancing application performance. This tool is essential for developers looking to optimize their frontend assets efficiently.

PythonWeb DevelopmentAsset Management
Become-A-Full-Stack-Web-Developer: Free Resources for Web Development

Become-A-Full-Stack-Web-Developer: Free Resources for Web Development

July 19, 2026

The Become-A-Full-Stack-Web-Developer repository is an extensive collection of free resources designed to guide aspiring developers through the entire journey of full-stack web development. It covers a wide array of topics, from foundational languages like HTML, CSS, and JavaScript to advanced frameworks such as React and Node.js, alongside databases, APIs, and career preparation. This resource is invaluable for anyone looking to build a strong skill set in modern web development.

Full StackWeb DevelopmentLearning Resources

Source repository

Open the original repository on GitHub.

16 counted GitHub visits

View on GitHub
OS
OSRepos

Analysis and discovery of open source repositories. Find interesting projects and follow their updates.

Monitor your website with YourWebsiteScore

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of third-party repository code is at your own risk. Always review source code, dependencies, licenses, and security implications before running anything.

© 2025 OSRepos. Built with Nuxt 3 and lots of ❤️