Add deployment scaffolding (Dockerfile, docker-compose, nginx)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-07 14:14:30 +01:00
parent f88e1082f0
commit 90dbeb185f
3 changed files with 45 additions and 0 deletions

27
.dockerignore Normal file
View File

@ -0,0 +1,27 @@
# Git
.git
.gitignore
# Development
node_modules
.next
.cache
# Documentation
README.md
CLAUDE.md
*.md
# IDE
.idea
.vscode
*.swp
# OS
.DS_Store
Thumbs.db
# Environment (keep .env.example)
.env
.env.local
.env*.local

3
.gitignore vendored
View File

@ -11,3 +11,6 @@ docker.env
# OS files
.DS_Store
Thumbs.db
# Claude Code local instructions (symlink)
CLAUDE.md

15
backlog/config.yml Normal file
View File

@ -0,0 +1,15 @@
project_name: "open-notebook"
default_status: "To Do"
statuses: ["To Do", "In Progress", "Done"]
labels: []
milestones: []
date_format: yyyy-mm-dd
max_column_width: 20
auto_open_browser: true
default_port: 6420
remote_operations: true
auto_commit: false
zero_padded_ids: 3
bypass_git_hooks: false
check_active_branches: true
active_branch_days: 60