Select Git revision
-
jan.bednarik authoredjan.bednarik authored
Makefile 317 B
init-env:
python3 -m venv .env
install:
pip install --upgrade -r requirements.txt -r test-requirements.txt
pip install -e .
run:
DEBUG=1 python manage.py runserver 8020
build:
docker build -t openlobby/openlobby-app:latest .
push:
docker push openlobby/openlobby-app:latest
release:
make build
make push