-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustfile
More file actions
43 lines (33 loc) · 1.11 KB
/
Copy pathJustfile
File metadata and controls
43 lines (33 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
set dotenv-load
set dotenv-filename := ".env.local"
# Import domain modules
import 'justfiles/backend.just'
import 'justfiles/web.just'
import 'justfiles/db.just'
import 'justfiles/tf.just'
import 'justfiles/ops.just'
import 'justfiles/gcp.just'
import 'justfiles/scripts.just'
# List all available commands
default:
@just --list
# Alias for 'just --list'
help:
@just --list
# ==========================================
# Core Developer Workflow
# ==========================================
# Run all tests across Python, Go, and Web
test: py-test go-test web-test
# Run all linters (Ruff, golangci-lint, ESLint, buf)
lint: py-lint go-lint web-lint proto-lint sh-lint
# Format all code (Ruff, go fmt, Prettier, buf, terraform fmt)
format: py-format go-format web-format proto-fmt tf-fmt sh-format
# Run all type checkers (Python, web)
typecheck: py-typecheck web-typecheck
# ==========================================
# Protocol Buffers (Aggregate)
# ==========================================
# Generate all protobuf schemas (Backend + Web)
proto-gen: proto-gen-backend proto-gen-web
@echo "✅ All schemas generated"