| title |
aliases |
tags |
created |
updated |
| BAIC — Client Knowledge |
| baic-dashboard |
| baic-deploy |
|
| client-knowledge |
| baic |
| deploy |
| rsync |
| azure-ad |
|
2026-05-06 |
2026-05-06 |
BAIC
BAIC is a Chinese automotive brand. Oliver Agency maintains the BAIC Dashboard — an internal analytics/reporting tool hosted on the main Oliver web server (baic SSH alias).
Key Facts
- SSH alias:
baic → vadym.samoilenko@10.220.72.13 (same server as many Oliver projects — see wiki/infrastructure/server-baic)
- URL:
https://baic.oliver.solutions/dashboard/
- Auth: Azure AD / Microsoft SSO via MSAL
- Stack: React + Vite (frontend) + FastAPI (backend)
Deploy Process
[!important] No git on server — deploy via rsync only
# 1. Build locally
npm run build
# 2. Sync dist/ to server (no git pull on server)
rsync -avz --delete dist/ baic:/var/vhosts/baic.oliver.solutions/htdocs/dashboard/
- Remote path:
/var/vhosts/baic.oliver.solutions/htdocs/dashboard/
- Backend systemd service:
baic_dashboard.service (underscore, not hyphen)
# Restart backend after Python changes
ssh baic "sudo systemctl restart baic_dashboard.service"
# Check status
ssh baic "sudo systemctl status baic_dashboard.service"
Known Gotchas
Related