https://github.com/pooulad/infomosaic
🧩See your system information momentarily and side by side like mosaics
https://github.com/pooulad/infomosaic
dashboard golang react reactjs systeminfo systeminformation typescript vite websocket
Last synced: 2 months ago
JSON representation
🧩See your system information momentarily and side by side like mosaics
- Host: GitHub
- URL: https://github.com/pooulad/infomosaic
- Owner: pooulad
- License: mit
- Created: 2024-09-06T20:42:42.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-11T19:08:49.000Z (over 1 year ago)
- Last Synced: 2025-03-13T02:43:08.831Z (about 1 year ago)
- Topics: dashboard, golang, react, reactjs, systeminfo, systeminformation, typescript, vite, websocket
- Language: TypeScript
- Homepage:
- Size: 586 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

### See your system information momentarily and side by side like mosaics🧩
### Minimal 🔌websocket project written with Golang and Reactjs


# How to use:
⚠️ Before use: do not forget to add .env file .it is necessary for docker compose file and golang main file. best sample:
.env file.
```env
INFOMOSAIC_PORT=8080
INFOMOSAIC_CLIENT_PORT=3000
```
## 🐳Run with Docker:
1.
```bash
git clone https://github.com/pooulad/infomosaic.git
```
2.
```bash
cd ./infomosaic
```
3.
```bash
docker compose up -d --build
```
### These commands create 2 separate services for front-end and back-end, both of which are ready to work with each other
✅client container : infomosaic-client-container
✅server container : infomosaic-server-container
### You can check logs with this command:
```bash
docker compose logs
```
## ✋Run manually:
1.
```bash
git clone https://github.com/pooulad/infomosaic.git
```
2.
```bash
cd ./infomosaic
```
3.
```bash
go mod tidy
go run ./cmd/main.go
```
### You should see this log in terminal:
Starting Infomosaic🧩 server on port YOUR_PORT
### Open another terminal and run:
4.
```bash
cd ./frontend
yarn install
yarn dev
```
### Now your client is runnig too. enjoy it🤠