-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
163 lines (124 loc) · 4.76 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
SHELL = /bin/bash
PYTHON = python3
FRONTEND_DIR = frontend
BACKEND_DIR = backend
PROJECT_NAME = my_project
.PHONY: help
help:
@echo "Usage: make <target>"
@echo ""
@echo "Available targets:"
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " %-20s : %s\n", $$1, $$2}' | grep -v 'make .* &&'
@echo ""
@echo "These targets are for internal use only:"
@echo "check_project_arg, "
# frontend cmds
.PHONY: install_frontend_env
install_frontend_env: ## Installs frontend dependencies using bun
cd ${FRONTEND_DIR} && bun install
.PHONY: clean_frontend_env
clean_frontend_env: ## Removes node_modules directory
cd ${FRONTEND_DIR} && rm -rf node_modules
.PHONY: build_frontend
build_frontend: install_frontend_env ## Builds frontend
cd ${FRONTEND_DIR} && bun run build
.PHONY: run_frontend
run_frontend: install_frontend_env ## Does same as run_dev_frontend
cd ${FRONTEND_DIR} && bun run dev
.PHONY: run_dev_frontend
run_dev_frontend: install_frontend_env ## Runs frontend in dev mode
make run_frontend
# backend cmds
.PHONY: install_backend_env
install_backend_env: ## Installs backend dependencies using poetry
cd ${BACKEND_DIR} && poetry install
.PHONY: clean_backend_env
clean_backend_env: ## Removes backend dependencies using poetry
cd ${BACKEND_DIR} && poetry env remove --all
.PHONY: build_backend
build_backend: install_backend_env ## Builds the backend wheel
cd ${BACKEND_DIR} && poetry build
.PHONY: check_project_arg
check_project_arg:
@if [ -z "$(PROJECT_NAME)" ]; then \
echo "PROJECT_NAME is not defined. Please pass PROJECT_NAME=<name> with the command."; \
exit 1; \
fi
.PHONY: run_backend
run_backend: check_project_arg ## Runs backend using the built dist. NEEDS arg: PROJECT_NAME
@if [ -f $(CURDIR)/.env ]; then set -a && . $(CURDIR)/.env; fi && \
cd ${PROJECT_NAME} && \
poetry add $(CURDIR)/${BACKEND_DIR}/dist/*.whl && \
poetry install && \
. `poetry env info --path`/bin/activate && \
chatsky.ui run_app
# This environment activation method was used to avoid the issue of not being able to run the app in the same shell
.PHONY: run_dev_backend
run_dev_backend: check_project_arg install_backend_env ## Runs backend in dev mode. NEEDS arg: PROJECT_NAME
cd ${BACKEND_DIR} && \
. `poetry env info --path`/bin/activate && \
chatsky.ui run_app --project-dir ../${PROJECT_NAME} --conf-reload
# backend tests
.PHONY: unit_tests
unit_tests: ## Runs all backend unit tests
cd ${BACKEND_DIR} && \
. `poetry env info --path`/bin/activate && \
pytest ../${BACKEND_DIR}/chatsky_ui/tests/api ../${BACKEND_DIR}/chatsky_ui/tests/services
.PHONY: integration_tests
integration_tests: ## Runs all backend integration tests
if [ ! -d "${PROJECT_NAME}" ]; then \
cd "${BACKEND_DIR}" && \
poetry run chatsky.ui init --destination ../ --no-input --overwrite-if-exists; \
fi
cd ${BACKEND_DIR} && \
. `poetry env info --path`/bin/activate && \
cd ../${PROJECT_NAME} && \
pytest ../${BACKEND_DIR}/chatsky_ui/tests/integration
.PHONY: backend_e2e_test
backend_e2e_test: ## Runs e2e backend test
if [ ! -d "${PROJECT_NAME}" ]; then \
cd "${BACKEND_DIR}" && \
poetry run chatsky.ui init --destination ../ --no-input --overwrite-if-exists; \
fi
cd ${BACKEND_DIR} && \
. `poetry env info --path`/bin/activate && \
cd ../${PROJECT_NAME} && \
pytest ../${BACKEND_DIR}/chatsky_ui/tests/e2e
.PHONY: backend_tests
backend_tests: ## Runs all backend tests
make unit_tests
make integration_tests
make backend_e2e_test
# app cmds
.PHONY: install_env
install_env: ## Installs frontend & backend deps
make install_frontend_env
make install_backend_env
.PHONY: clean_env
clean_env: ## Removes frontend & backend deps
make clean_frontend_env
make clean_backend_env
.PHONY: build
build: install_env ## Builds both frontend & backend
make build_frontend
make build_backend
.PHONY: run_app
run_app: check_project_arg build_frontend ## Builds frontend and backend then runs the app. NEEDS arg: PROJECT_NAME
cp ${FRONTEND_DIR}/dist/* ${BACKEND_DIR}/chatsky_ui/static/ && \
make build_backend && \
make run_backend PROJECT_NAME=${PROJECT_NAME}
.PHONY: run_dev
run_dev: check_project_arg install_env ## Runs both backend and frontend in dev mode. NEEDS arg: PROJECT_NAME
make run_dev_backend PROJECT_NAME=${PROJECT_NAME} &
make run_dev_frontend
.PHONY: init_proj
init_proj: install_backend_env ## Initiates a new project using chatsky-ui
cd ${BACKEND_DIR} && poetry run chatsky.ui init --destination ../
.PHONY: init_with_cc
init_with_cc: ## Initiates a new project using cookiecutter
cookiecutter https://github.com/Ramimashkouk/df_d_template.git
.PHONY: build_docs
build_docs: install_backend_env ## Builds the docs
cd ${BACKEND_DIR} && \
. `poetry env info --path`/bin/activate && \
cd ../docs && make html && cd ../