Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ SANDBOX_EMULATOR_BASE_URL=http://host.docker.internal:8000

# Exposed port (nginx)
SICO_PORT=8080
SICO_APP_NAME=sico

# BACKEND_ROOT overrides the auto-detected backend source root (used to
# locate configs/migrations). The compiled Docker image already lays out the
Expand Down
6 changes: 6 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Backend ↔ Core communicate via gRPC (`:50053`). Core calls back to the backend

See `CLAUDE.md` for the full architecture and coding-style reference.

## Source file conventions

- Every new source/config file (`.go`, `.py`, `.proto`, `.yaml`, shell scripts, etc.) must start with the standard 19-line MIT header from `LICENSE` — `# Copyright (c) 2026 Sico Authors` for `#`-comment languages, `// Copyright (c) 2026 Sico Authors` for `//`-comment languages.
- The `addlicense` pre-commit hook (`.pre-commit-config.yaml`) inserts/refreshes the header automatically; run `pre-commit run addlicense --all-files` (or `pre-commit run --files <new-file>`) before committing new files.
- Do not strip the header when editing existing files.

## Backend (Go) guidelines

- **Do not edit generated files:**
Expand Down
Loading
Loading