Skip to content

Commit

Permalink
minorfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnicegyu11 committed Dec 6, 2024
1 parent 2a7c194 commit b4f8021
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,14 @@ down-maintenance: ## Stop the maintenance mode
fi \
,)

.PHONY: venv
venv: .venv ## Creates a python virtual environment with dev tools (pip, pylint, ...)
.venv:
@python3 -m venv .venv
@.venv/bin/pip3 install --upgrade pip wheel setuptools
@.venv/bin/pip3 install typer
@echo "To activate the venv, execute 'source .venv/bin/activate'"

# Misc: info & clean
.PHONY: info info-vars info-local
info: ## Displays some important info
Expand Down

0 comments on commit b4f8021

Please sign in to comment.