Skip to content

Commit

Permalink
Add basic flask app
Browse files Browse the repository at this point in the history
  • Loading branch information
JackPlowman committed Apr 3, 2024
1 parent 5293976 commit 602a2b0
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 1,834 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL=/bin/bash -euo pipefail

#Installs dependencies using poetry.
install-python:
poetry install
poetry install --no-root.

#Installs dependencies using npm.
install-node:
Expand All @@ -18,7 +18,7 @@ install: install-node install-python .git/hooks/pre-commit

#Run the npm linting script (specified in package.json). Used to check the syntax and formatting of files.
lint:
npm run lint
# TODO: Python linting
find . -name '*.py' -not -path '**/.venv/*' | xargs poetry run flake8

#Removes build/ + dist/ directories
Expand Down
Loading

0 comments on commit 602a2b0

Please sign in to comment.