Files
cookiecutter-data-science/{{ cookiecutter.repo_name }}/justfile
T
Michael J Clark bb1644ff64 tidy
2024-06-09 16:10:28 +08:00

21 lines
347 B
Makefile

# see https://cheatography.com/linux-china/cheat-sheets/justfile/
set dotenv-load
# Export all just variables as environment variables.
set export
package := "{{cookiecutter.project_name.lower().replace(' ', '_')}}"
[private]
default: @just --list
# put your run commands here
app:
echo "hello world"
# black and isort
lint:
ruff .