chore: add docker compose for local tests
ci-agent / build (push) Failing after 1m24s

This commit is contained in:
d3m0k1d
2026-04-04 01:37:33 +03:00
parent 8ab7fbc6b2
commit 5c67c0287e
8 changed files with 1760 additions and 1 deletions
@@ -0,0 +1,16 @@
#!/bin/bash
set -e
clickhouse-client --query "CREATE DATABASE IF NOT EXISTS hellreign;"
clickhouse-client --query "
CREATE TABLE IF NOT EXISTS hellreign.logs (
timestamp DateTime64(3) DEFAULT now(),
level String,
service String,
message String,
host String,
trace_id String
) ENGINE = MergeTree()
ORDER BY (timestamp, service, level);
"