makefile
613 Bytes
# Makefile
test: build teste
run: build
venv/bin/python app/barrabrasil.py
profile: build
venv/bin/python app/profile.py
build: venv
sh ./build.sh $(PROFILE)
venv: venv/bin/activate
venv/bin/activate: requirements.txt package.json
test -d .env || virtualenv --no-site-packages venv
venv/bin/pip install -Ur requirements.txt
touch venv/bin/activate
npm install
testReport:
npm run testReport
teste:
docker build docker -t barra-govbr-image
docker run -dit -p 80:80 --name barra-govbr barra-govbr-image
npm run test
docker rm -f barra-govbr
docker rmi -f barra-govbr-image