1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .PHONY: clean install help test lint run dependencies docs
- help:
- @echo " clean remove unwanted stuff"
- @echo " install install dependencies and flaskbb"
- @echo " devconfig generates a development config"
- @echo " test run the testsuite"
- @echo " lint check the source for style errors"
- @echo " run run the development server with the development config"
- @echo " docs build the documentation"
- dependencies:requirements.txt
- pip install -r requirements.txt
- clean:
- find . -name '*.pyc' -exec rm -f {} +
- find . -name '*.pyo' -exec rm -f {} +
- find . -name '*~' -exec rm -f {} +
- find . -name '__pycache__' -exec rm -rf {} +
- test:
- py.test
- run:
- flaskbb --config ./flaskbb.cfg run --debugger --reload
- devconfig:
- flaskbb makeconfig -d
- install:dependencies
- clear
- flaskbb --config ./flaskbb.cfg install
- docs:
- $(MAKE) -C docs html
- lint:check
- flake8
- check:
- @type flake8 >/dev/null 2>&1 || echo "Flake8 is not installed. You can install it with 'pip install flake8'."
|