More
This commit is contained in:
parent
861eac6d46
commit
267a0e1512
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -1,3 +1,8 @@
|
|||||||
{
|
{
|
||||||
"python.defaultInterpreterPath": ".venv/bin/python",
|
"python.defaultInterpreterPath": ".venv/bin/python",
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"[python]": {
|
||||||
|
"editor.defaultFormatter": "ms-python.python",
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
3
Makefile
3
Makefile
@ -11,6 +11,9 @@ venv:
|
|||||||
install:
|
install:
|
||||||
$(VENV_DIR)/bin/pip install -r $(REQ_FILE)
|
$(VENV_DIR)/bin/pip install -r $(REQ_FILE)
|
||||||
|
|
||||||
|
install-dev:
|
||||||
|
$(VENV_DIR)/bin/pip install -r $(REQ_FILE) -r requirements-dev.txt
|
||||||
|
|
||||||
# Run the application
|
# Run the application
|
||||||
start: install
|
start: install
|
||||||
$(VENV_DIR)/bin/python $(APP_NAME)
|
$(VENV_DIR)/bin/python $(APP_NAME)
|
||||||
|
|||||||
4
requirements-dev.txt
Normal file
4
requirements-dev.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
pylint
|
||||||
|
black
|
||||||
|
isort
|
||||||
|
flake8
|
||||||
Loading…
x
Reference in New Issue
Block a user