mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-24 10:02:23 +07:00
19 lines
190 B
Makefile
19 lines
190 B
Makefile
|
#TODO
|
||
|
.POSIX:
|
||
|
|
||
|
default: help
|
||
|
|
||
|
help:
|
||
|
@echo "Khue's homelab"
|
||
|
|
||
|
platform:
|
||
|
cd ./platform \
|
||
|
&& terraform init \
|
||
|
&& terraform apply
|
||
|
|
||
|
apps:
|
||
|
echo hello
|
||
|
|
||
|
reset-infra:
|
||
|
./infra/scripts/reset.py
|