Skip to content
Snippets Groups Projects
Commit 843077f3 authored by Tore.Brede's avatar Tore.Brede
Browse files

Merge branch 'GREG-12/1' into 'master'

build: add shorthands for interacting with the build system

See merge request !3
parents d512e792 19758dac
No related branches found
No related tags found
1 merge request!3build: add shorthands for interacting with the build system
*.swp
*.pyc
*.egg-info/
.project
.pydevproject
.vscode/
*.pyc
*.swp
.coverage
.venv/
.settings/
.mypy_cache/
.dockerignore
.idea/
.mypy_cache/
.project
.pydevproject
.settings/
.venv/
.vscode/
venv/
gregsite/db.sqlite3
gregsite/static/
gregsite/settings/local.py
gregsite/static/
Makefile 0 → 100644
PIP ?= pip -q
POETRY ?= poetry
PYTHON ?= python3.9
VENV ?= venv
pip = python -m $(PIP)
poetry = python -m $(POETRY)
venv = . $(VENV)/bin/activate &&
.PHONY: clean
clean:
$(RM) -r $(VENV)
$(VENV): $(VENV)/touchfile
$(VENV)/touchfile:
test -d $(VENV) || $(PYTHON) -m venv $(VENV)
$(venv) $(pip) install -U pip
$(venv) $(pip) install poetry
$(venv) $(poetry) install
touch $@
.PHONY: test
test: $(VENV)
$(venv) python manage.py test
.PHONY: deps
deps: poetry.lock
poetry.lock: pyproject.toml | $(VENV)
$(venv) $(poetry) update $(PACKAGES)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment