Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • dependabot/pip/django-2.2.24
  • dependabot/pip/py-1.10.0
  • dependabot/pip/bleach-3.3.0
4 results

Makefile

Blame
  • 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