mirror of
https://github.com/wassname/lie_elicitation_prompts.git
synced 2026-06-27 16:10:35 +08:00
21 lines
313 B
Makefile
21 lines
313 B
Makefile
# see https://cheatography.com/linux-china/cheat-sheets/justfile/
|
|
|
|
set dotenv-load
|
|
|
|
# Export all just variables as environment variables.
|
|
set export
|
|
|
|
package := "lieelicitationprompts"
|
|
|
|
[private]
|
|
default: @just --list
|
|
|
|
# put your run commands here
|
|
app:
|
|
echo "hello world"
|
|
|
|
# black and isort
|
|
lint:
|
|
ruff .
|
|
|