We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf48fa commit 656f3ccCopy full SHA for 656f3cc
Makefile
@@ -1,6 +1,5 @@
1
build:
2
- ./build.sh
3
-
+ . .venv/bin/activate && ./build.sh
4
install:
5
uv sync
6
build.sh
@@ -1,12 +1,6 @@
#!/usr/bin/env bash
-set -e
-# Скачиваем и устанавливаем uv
+# скачиваем uv
curl -LsSf https://astral.sh/uv/install.sh | sh
-source "$HOME/.local/bin/env"
7
8
-# Активируем виртуальное окружение
9
-source .venv/bin/activate
+source $HOME/.local/bin/env
10
11
-make install
12
-make migrate
+make install && make migrate
0 commit comments