-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (25 loc) · 727 Bytes
/
Copy pathMakefile
File metadata and controls
31 lines (25 loc) · 727 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
30
31
.PHONY: start
.PHONY: start-infra
.PHONY: start-networking
.PHONY: start-redis
start:
@echo "=== Starting CrowdStream ==="
@(cd backend && npm run dev) &
@(cd frontend && npm run dev) &
@wait
start-infra:
@echo "=== Starting CrowdStream Infra ==="
@(cd infra/coturn && make coturn-start) &
@(cd infra/envoy && docker compose up) &
@(cd infra/ngrok && docker compose up) &
@(cd infra/nginx && docker compose up) &
@(cd infra/haproxy && make haproxy-start) &
@wait
start-networking:
@echo "=== Starting CrowdStream Infra ==="
@(cd infra/ngrok && docker compose up) &
@(cd infra/nginx && docker compose up) &
@wait
start-redis:
@echo "=== Starting Redis Infra ==="
cd infra/redis && make redis-cluster-up