Backend: - Add type validation and coercion for settings API - Implement SettingStorage and SettingType in registry - Improve CRUD operations for settings Frontend: - Refactor Theme, Language, Sidebar, ViewMode contexts - Simplify admin components (GeneralTab, SettingsTab, UsersTab) - Add new settings endpoints to API client - Improve App initialization flow Infrastructure: - Update Dockerfile and docker-compose.yml - Add .dockerignore - Update Makefile and README 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
37 lines
802 B
Makefile
37 lines
802 B
Makefile
.PHONY: help up down restart logs clean build test
|
|
|
|
help:
|
|
@echo "Service App - Make Commands"
|
|
@echo ""
|
|
@echo "Usage:"
|
|
@echo " make up Start service with Docker Compose"
|
|
@echo " make down Stop service"
|
|
@echo " make restart Restart service"
|
|
@echo " make logs View logs"
|
|
@echo " make clean Stop and remove containers"
|
|
@echo " make build Rebuild container"
|
|
@echo " make shell Open container shell"
|
|
|
|
up:
|
|
docker-compose up -d
|
|
|
|
down:
|
|
docker-compose down
|
|
|
|
restart:
|
|
docker-compose restart
|
|
|
|
logs:
|
|
docker-compose logs -f
|
|
|
|
clean:
|
|
docker-compose down -v --remove-orphans
|
|
rm -rf backend/__pycache__ backend/**/__pycache__
|
|
rm -rf frontend/node_modules frontend/dist
|
|
|
|
build:
|
|
docker-compose build --no-cache
|
|
|
|
shell:
|
|
docker-compose exec app /bin/sh
|