ingress/justfile

23 lines
376 B
Makefile
Raw Normal View History

# Always use devbox environment to run commands.
set shell := ["devbox", "run"]
# Load dotenv
set dotenv-load
default:
@just --list
lint:
@tofu fmt -check -recursive .
@tflint --recursive
2024-08-31 18:30:08 +00:00
deploy:
#!/usr/bin/env sh
cd {{justfile_directory()}}/terraform
tofu init
tofu apply
2024-08-25 15:47:41 +00:00
destroy:
#!/usr/bin/env sh
cd {{justfile_directory()}}/terraform
tofu destroy