daraz-tek.beta.fogtype.com/Makefile

19 lines
265 B
Makefile
Raw Normal View History

2024-12-12 22:38:49 +09:00
REMOTE_HOST := $(notdir $(shell pwd -L))
.PHONY: help
help:
@cat README.md
.PHONY: install
install:
ssh $(REMOTE_HOST) <$@
.PHONY: deploy
deploy:
ssh $(REMOTE_HOST) <$@
.env:
touch $@
chmod 600 $@
@echo POSTGRES_PASSWORD=$(shell openssl rand -hex 32) >$@