-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile
136 lines (109 loc) · 4.39 KB
/
Makefile
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# Start backend development server with PostgreSQL
back_dev:
cd packages/hocuspocus.server && npm run dev:pg --trace-deprecation
# Start backend WebSocket server
back_ws:
cd packages/hocuspocus.server && npm run dev:ws --trace-deprecation
# Start Supabase development server
supabase_start:
cd packages/Supabase && npm run start
# Stop Supabase server
supabase_stop:
cd packages/Supabase && npm run stop
# Display Supabase status
supabase_status:
cd packages/supabase && npm run status
# Prepare seed.sql by concatenating all SQL files from scripts directory
prepare-seed:
@echo "Preparing seed.sql file..."
@cd packages/supabase && \
if [ -f seed.sql ]; then \
echo "" > seed.sql; \
echo "Cleared existing seed.sql"; \
fi; \
for file in scripts/*.sql; do \
if [ -f "$$file" ]; then \
echo "\n-- Including $$file" >> seed.sql; \
cat "$$file" >> seed.sql; \
echo "Added $$file to seed.sql"; \
fi; \
done; \
echo "Seed preparation completed."
# Resets the local database to a clean state.
supabase-reset:
@echo "Resetting the database..."
@read -p "Are you sure you want to reset the database? [y/N]: " confirm; \
if [ "$$confirm" = "y" ]; then \
make prepare-seed && \
cd packages/supabase && pnpm db:reset; \
else \
echo "Database reset canceled."; \
fi
# Start frontend development server
front_dev:
cd packages/webapp && npm run dev --trace-deprecation
# Run backend, WebSocket and frontend development servers concurrently
local:
make -j 4 supabase_start back_dev back_ws front_dev
# Run Cypress tests
cypress_open:
cd packages/webapp && npm run cypress:open
cypress_run:
cd packages/webapp && npm run cypress:run
# Start editor development server
dev_editor:
cd packages/webapp && npm run dev
# Start Hocus Pocus development server
dev_editor_hocuspocus:
cd packages/web && npm run hocuspocus:server
# Run editor and Hocus Pocus development servers concurrently
editor:
make -j 2 dev_editor_hocuspocus dev_editor
# Build the application
build:
cd packages/web && rm -rf dist && npm run build
cd packages/hocuspocus.server && docker-compose -f docker-compose.prod.yml up
# Run the application without building
fastRun:
docker-compose -f docker-compose.prod.yml up
# Build and run frontend in stage environment
build_front_stage:
cd packages/webapp && npm run build && npm run pm2:start:stage
# Build and run frontend in production environment
build_front_production:
cd packages/webapp && npm run build && npm run pm2:start:prod
# Build, stop and remove the existing stage container, and run a new stage container
build_hocuspocus.server_stage: down_stage
cd packages/hocuspocus.server && env ENVIRONMENT=stage docker-compose -p stage-docsplus build --no-cache
cd packages/hocuspocus.server && env ENVIRONMENT=stage docker-compose -p stage-docsplus up -d
# Stop and remove the stage container, and remove the local stage image
down_stage:
cd packages/hocuspocus.server && env ENVIRONMENT=stage docker-compose -p stage-docsplus down --rmi local
# Build, stop and remove the existing production container, and run a new production container
build_hocuspocus.server_prod: down_prod
@echo "Checking for existing containers..."
@if docker ps | grep -q "prod-docsplus"; then \
echo "Found running containers. Stopping gracefully..."; \
docker-compose -p prod-docsplus stop || true; \
fi
@echo "Building and starting new containers..."
cd packages/hocuspocus.server && env ENVIRONMENT=prod docker-compose -p prod-docsplus build --no-cache
cd packages/hocuspocus.server && env ENVIRONMENT=prod docker-compose -p prod-docsplus up -d
@echo "Deployment completed successfully."
# Stop and remove the production container, and remove the local production imageq
down_prod:
cd packages/hocuspocus.server && env ENVIRONMENT=prod docker-compose -p prod-docsplus down --rmi local
# Build and run Uptime Kuma
build_uptime_kuma:
docker compose -f docker-compose.uptime-kuma.yml down
docker compose -f docker-compose.uptime-kuma.yml pull
docker compose -f docker-compose.uptime-kuma.yml up -d
# Stop and remove Uptime Kuma
down_uptime_kuma:
docker compose -f docker-compose.uptime-kuma.yml down
help: # Show available commands
@echo "Available commands:"
@grep -E '^[a-zA-Z0-9_-]+:.*?# .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?# "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: help
generate_supabase_types: # Generate Supabase TypeScript types
cd packages/supabase && yarn supabase:types