forked from Justin0504/Aegis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (22 loc) · 698 Bytes
/
Makefile
File metadata and controls
29 lines (22 loc) · 698 Bytes
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
.PHONY: help up down dev logs clean install-sdk
help:
@echo "AEGIS Commands:"
@echo " make up - Start gateway + dashboard"
@echo " make down - Stop all services"
@echo " make dev - Start with hot-reload"
@echo " make logs - Tail logs"
@echo " make clean - Remove containers and volumes"
@echo " make install-sdk - Install Python SDK locally"
up:
docker compose up -d --build
down:
docker compose down
dev:
docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build
logs:
docker compose logs -f
clean:
docker compose down -v
install-sdk:
pip install -e ./packages/core-schema/python
pip install -e ./packages/sdk-python