alllexxx1/python-project-83

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
install:
    poetry install

build:
    ./build.sh

dev:
    poetry run flask --app page_analyzer:app --debug run

PORT ?= 8000
start:
    poetry run gunicorn -w 5 -b 0.0.0.0:$(PORT) page_analyzer:app

lint:
    poetry run flake8