-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
80 lines (72 loc) · 2.42 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
VENV := .venv
PYTHON := $(VENV)/bin/python3
UV := $(shell which uv)
CHAINLIT := $(VENV)/bin/chainlit
SUPERVISOR := $(VENV)/bin/supervisord
.PHONY: env run uv clean test install-multitail stream-logs
uv:
@echo "Installing uv..."
@command -v uv >/dev/null 2>&1 || { echo "uv not found, installing..."; curl -LsSf https://astral.sh/uv/install.sh | sh; }
@echo "uv is installed"
install-multitail:
@if command -v multitail >/dev/null 2>&1; then \
echo "multitail is already installed."; \
else \
echo "Installing multitail..."; \
if [ "$(shell uname)" = "Darwin" ]; then \
if command -v brew >/dev/null 2>&1; then \
brew install multitail; \
else \
echo "Homebrew is not installed. Please install Homebrew first."; \
exit 1; \
fi \
elif [ "$(shell uname)" = "Linux" ]; then \
if command -v apt-get >/dev/null 2>&1; then \
sudo apt-get update && sudo apt-get install -y multitail; \
elif command -v yum >/dev/null 2>&1; then \
sudo yum install -y epel-release && sudo yum install -y multitail; \
elif command -v dnf >/dev/null 2>&1; then \
sudo dnf install -y epel-release && sudo dnf install -y multitail; \
elif command -v pacman >/dev/null 2>&1; then \
sudo pacman -Sy multitail; \
else \
echo "Unsupported Linux distribution. Please install multitail manually."; \
exit 1; \
fi \
else \
echo "Unsupported operating system. Please install multitail manually."; \
exit 1; \
fi; \
echo "multitail installed successfully."; \
fi
env: uv
@echo "Installing python dependencies..."
@uv add pyproject.toml
@echo "Installing git hooks..."
@mkdir -p .log
@uv run pre-commit install
@uv run pre-commit install --hook-type pre-push
@if [ ! -f ~/.aws/config ]; then \
echo "[default]\nregion = us-west-2" > ~/.aws/config; \
echo "Created ~/.aws/config file"; \
fi
@$(PYTHON) hacks/patch_socket.py
@echo "Attempting to install multitail..."
@if ! make install-multitail; then \
echo "Warning: Could not install multitail automatically."; \
echo "If you want to use 'make stream-logs' to stream all logs,"; \
echo "please install multitail manually."; \
fi
run:
@echo "Starting application..."
@PYTHONPATH=$(shell pwd) $(SUPERVISOR) -c supervisord.conf
test:
@echo "Running tests..."
@$(PYTHON) -m pytest --cov=./ --cov-report=xml
stream-logs:
@multitail -Q 2 '.log/*.log'
clean:
@echo "Removing venv..."
@rm -rf $(VENV)
@echo "Removing .log directory..."
@rm -rf .log