chore: bootstrap independent git workflow
Some checks failed
release-smoke / macos-13 / x86_64-apple-darwin (push) Has been cancelled
release-smoke / ubuntu-latest / x86_64-unknown-linux-gnu (push) Has been cancelled
release-smoke / windows-latest / x86_64-pc-windows-msvc (push) Has been cancelled

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Paperclip CTO
2026-03-26 03:49:06 +00:00
commit 7424491944
60 changed files with 7793 additions and 0 deletions

30
docker-compose.demo.yml Normal file
View File

@@ -0,0 +1,30 @@
services:
postgres:
image: postgres:16
ports:
- "55432:5432"
environment:
POSTGRES_DB: dbtool_demo
POSTGRES_USER: dbtool
POSTGRES_PASSWORD: dbtool
healthcheck:
test: ["CMD-SHELL", "pg_isready -U dbtool -d dbtool_demo"]
interval: 5s
timeout: 5s
retries: 20
mysql:
image: mysql:8.4
ports:
- "53306:3306"
environment:
MYSQL_DATABASE: dbtool_demo
MYSQL_USER: dbtool
MYSQL_PASSWORD: dbtool
MYSQL_ROOT_PASSWORD: dbtoolroot
command: ["mysqld", "--character-set-server=utf8mb4", "--collation-server=utf8mb4_unicode_ci"]
healthcheck:
test: ["CMD-SHELL", "mysqladmin ping -uroot -pdbtoolroot"]
interval: 5s
timeout: 5s
retries: 30