aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-11-30 16:48:43 +0900
committernsfisis <nsfisis@gmail.com>2025-12-04 23:26:15 +0900
commit9233b72dcfd4f44f7e30dd0d699530493e87072d (patch)
tree0b4c2cc975881f6f67577b1e10ffc1a46482428d /README.md
parent3708851e2f9a32e16a70d5dfe09e35d930344aaa (diff)
downloadkioku-9233b72dcfd4f44f7e30dd0d699530493e87072d.tar.gz
kioku-9233b72dcfd4f44f7e30dd0d699530493e87072d.tar.zst
kioku-9233b72dcfd4f44f7e30dd0d699530493e87072d.zip
feat(db): add Docker Compose for PostgreSQL
Add docker-compose.yml with PostgreSQL 17 Alpine image for local development. Includes healthcheck, volume persistence, and environment variable configuration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index 46bfb35..4d90b2f 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,9 @@ A spaced repetition learning application (Anki clone) with PWA offline support a
- Node.js 22+
- pnpm 10+
-- PostgreSQL 15+
-- Docker (optional)
+- PostgreSQL 18+
+- Docker
+- Direnv (optional)
### Development
@@ -24,8 +25,8 @@ A spaced repetition learning application (Anki clone) with PWA offline support a
# Install dependencies
pnpm install
-# Start PostgreSQL (with Docker)
-docker compose up -d postgres
+# Start containers
+docker compose up
# Run database migrations
pnpm --filter server db:migrate