sentiment-analysis / justfile
Tymec's picture
Completely change the structure of the project
85ac990
raw
history blame
374 Bytes
#!/usr/bin/env just --justfile
@default:
just --list
@lint:
poetry run pre-commit run --all-files
@install:
poetry install --only main
@install-dev:
poetry self add poetry-plugin-export
poetry install
@requirements:
poetry export -f requirements.txt --output requirements.txt --without dev
[no-exit-message]
@app *ARGS:
poetry run python -m app {{ARGS}}