mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-07-07 00:36:13 +02:00
Deploy jrnl-org/jrnl to github.com/jrnl-org/jrnl.git:gh-pages
This commit is contained in:
commit
c480368a87
104 changed files with 6140 additions and 0 deletions
29
Makefile
Normal file
29
Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# A Makefile for commands I run frequently:
|
||||
|
||||
clean:
|
||||
rm -rf dist
|
||||
rm -rf _static
|
||||
rm -rf jrnl.egg-info
|
||||
rm -rf _build
|
||||
rm -rf _sources
|
||||
rm -rf _static
|
||||
rm -rf site/
|
||||
rm -f *.html
|
||||
|
||||
html:
|
||||
poetry run mkdocs serve
|
||||
|
||||
format: ## check style with flake8
|
||||
poetry run black features jrnl
|
||||
|
||||
lint: ## check style with flake8
|
||||
poetry run flake8 jrnl features --ignore E501
|
||||
|
||||
test: ## Run behave tests
|
||||
poetry run behave
|
||||
|
||||
build:
|
||||
poetry build
|
||||
|
||||
install: clean ## install the package to the active Python's site-packages
|
||||
poetry install
|
Loading…
Add table
Add a link
Reference in a new issue