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 789f639 commit 675b049Copy full SHA for 675b049
Makefile
@@ -1,17 +1,16 @@
1
-IMAGE_NAME=nebulabroadcast/nebula-server:latest
+IMAGE_NAME=nebulabroadcast/nebula-server:dev
2
VERSION=$(shell cd backend && poetry run python -c 'import nebula' --version)
3
4
check: check_version
5
cd frontend && yarn format
6
7
cd backend && \
8
- poetry run black . && \
9
- poetry run ruff --fix . && \
+ poetry run ruff format . && \
+ poetry run ruff check --fix . && \
10
poetry run mypy .
11
12
check_version:
13
- echo $(VERSION)
14
- sed -i "s/^version = \".*\"/version = \"$(VERSION)\"/" backend/pyproject.toml
+ cd backend && poetry version $(VERSION)
15
16
build:
17
docker build -t $(IMAGE_NAME) .
0 commit comments