⚡️ ClickHouse client administrative and statistic dashboard
A client application written in React for managers of statistics and analytics, as well as for administrators of the Yandex ClickHouse database
git clone https://github.com/zikwall/clickhouse-dashboard
cd /clickhouse-dashboard
npm install
npm start
npm build
server {
listen 82;
server_name clickhouse-dashboard.local;
root /path/to/clickhouse-dashboard/build;
index index.html;
access_log /var/log/nginx/clikhouse-dashboard.access.log;
error_log /var/log/nginx/clikhouse-dashboard.error.log;
location / {
try_files $uri /index.html =404;
}
}