- Traefik: remove asephstech/asephscloud SSL certs, fix api.insecure, add ping healthcheck - .env.example: prune from 145 to 30 vars (remove Firebase, Discord, Coolify, etc.) - scraper.Dockerfile: remove Node.js & Chromium from runtime, add healthcheck - CI/CD: remove orphan container ref, commented blocks, fix lint workflow - infra: remove mysql config (no active service), clean up middleware config - root: remove .nvmrc (dup), renovate.json (use dependabot), simplify Makefile - scripts: fix legacy package refs, simplify update-deps to use bun - docs: remove stale handoff-log, quality-gates, superpowers designs, archived files - compose: add healthchecks to traefik, redis, and scraper-api services Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
765 B
Makefile
23 lines
765 B
Makefile
.PHONY: help dev update-submodules deploy init-submodules status
|
|
|
|
SHELL := /bin/bash
|
|
|
|
help: ## Show this help
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
|
|
|
dev: ## Start development infrastructure (Redis etc.)
|
|
docker compose -f infra/compose/shared.yml up -d
|
|
|
|
update-submodules: ## Update all git submodules to latest remote
|
|
git submodule update --remote --merge --recursive
|
|
|
|
deploy: ## Deploy to VPS (triggers GitHub Actions)
|
|
@echo "Push to main to trigger deployment, or run:"
|
|
@echo " gh workflow run deploy-docker.yml"
|
|
|
|
init-submodules: ## Initialize all submodules
|
|
git submodule update --init --recursive
|
|
|
|
status: ## Show submodule status
|
|
git submodule status
|