# scaffoldia - Development Tasks
set shell := ["bash", "-uc"]
set dotenv-load := true

project := "scaffoldia"

# Show all recipes
default:
    @just --list --unsorted

# Build
build:
    @echo "TODO: Add build command"

# Test
test:
    @echo "TODO: Add test command"

# Clean
clean:
    @echo "TODO: Add clean command"

# Format
fmt:
    @echo "TODO: Add format command"

# Lint
lint:
    @echo "TODO: Add lint command"

secret-scan-trufflehog:
    @command -v trufflehog >/dev/null && trufflehog filesystem . --only-verified || true
