This project is a front-end-only dashboard built with React and React Router, exploring the concept of a browser-based container management solution. It allows users to create, edit, and manage containers running backend API instances, providing insights into their processes.
The dashboard shows analytics like network traffic, API calls, total call costs, failed attempts, and more. all presented in a clean, minimal UI.
This isn't a production tool, just a fun experimental concept to test the idea and learn.
(not available yet)
but should be availabe on the first release : )
To run the project in development mode (assuming you've already cloned this repository locally), start the Vite development server using the following command:
$> npm run devOnce the server is running, navigate to http://localhost:5173 in your browser.
And that’s it, feel free to explore the code and modify it as you wish
To build the project for production, run the following command:
$> npm run buildAfter Vite finishes compiling, you’ll find a new ./dist directory in your project folder. This directory contains the generated static files. You can host these files using a simple Nginx server or a custom server, such as:
http-server
$> npm install http-server
$> http-server -o ./dist/index.htmlPHP
$> cd ./dist
$> php -S 127.0.0.1:3000 # will look for index.htmlThis project is licensed under the MIT License.

