Created
June 7, 2025 12:55
-
-
Save marshyon/859cb5d125bebe845b105ca739ddee66 to your computer and use it in GitHub Desktop.
basic justfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BINGBING := "https://www.bing.com" | |
set dotenv-load | |
help: | |
echo "Bing URL is: {{BINGBING}}" | |
@echo "bongo is $BONGO" | |
just -l | |
build: | |
echo "doing the build" | |
test: | |
echo "running the tests" | |
clean: | |
echo "cleaning up" | |
do-everthing: | |
just build | |
just test | |
just clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment