-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
53 lines (42 loc) · 910 Bytes
/
makefile
File metadata and controls
53 lines (42 loc) · 910 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2025 Rendini Labs.
.DEFAULT_GOAL:=all
all: install
.PHONY: install
install:
@echo "Installing Rendini..."
@tilt ci
@echo "Successfully installed Rendini."
.PHONY: ci
ci: install
.PHONY: i
i: install
.PHONY: start
start:
@echo "Starting Rendini..."
@tilt up
@echo "Successfully ran Rendini."
.PHONY: dev
dev: start
.PHONY: serve
serve: start
.PHONY: up
up: start
# Stop any and all docker containers with a name containing "rendini"
.PHONY: stop
stop:
@./stop.sh
.PHONY: down
down: stop
.PHONY: restart
restart: stop start
.PHONY: clean
clean: stop
@echo "Cleaning Rendini..."
@rm --recursive --force ./renders/node/nunjucks/dist
@echo "Successfully cleaned Rendini."
.PHONY: reset
reset: clean
@echo "Resetting Rendini...DEFAULT_GOAL"
@rm --recursive --force ./renders/node/nunjucks/node_modules
@echo "Successfully reset Rendini."