forked from bkleinen/bkleinen.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
89 lines (72 loc) · 2.62 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html#Phony-Targets
# introduced port variable:
# you can explicitely pass a port, e.g. $ make hugo port=1313
# open a version with and without drafts in parallel:
# make hugo hugoWOD
.PHONY : hugo # only necessary if file with same name exists
.RECIPEPREFIX = -
hugo/node_modules :
- cd hugo ; npm install ; cd ..
# default port
port=4242
hugo : hugo/node_modules openH
- hugo --buildDrafts --source hugo -p $(port) server
hugoWT : port = 4241
hugoWT : hugo/node_modules open
- hugo --buildDrafts --environment progwebtec --source hugo -p $(port) server
hugoWOD : port = 4243
hugoWOD : hugo/node_modules openH
- hugo --source hugo -p $(port) --baseURL "http://localhost:$(port)/~kleinen/" server
hugoP : port = 4244
hugoP : hugo/node_modules openH # as published; there might be differences as there are isServer queries
- hugo --environment production --source hugo -p $(port) --baseURL "http://localhost:$(port)/~kleinen/" server
hugoS : hugo/node_modules openS # staging; without drafts
- hugo --environment staging --source hugo -p 4242 server
hugoSD : hugo/node_modules openSD # staging; like production but with drafts
- hugo --buildDrafts --environment stagingdrafts --source hugo -p 4242 server
c :
- git add .
- git commit -m "$m"
# variable definition is executed when needed
# variable can also be set when calling target, e.g.
# make deploy tag=v0.42
# zum ausprobieren
# tag = $(shell echo DEF_TAG)
tag = $(shell bin/hugo_deployment/gitautotag.sh --minor)
tag : check_on_main push
- echo "created new tag $(tag)"
push :
- git push origin main
# indirection needed to only create tag if conditions are met
deploy : check_on_main push deployIMPLYOUDONTWANNATYPETHIS
deployIMPLYOUDONTWANNATYPETHIS : # dont call this directly!!!!
- git push origin $(tag)
ERR = $(error error is "not on main branch")
current_branch = $(shell git branch --show-current)
check_on_main :
ifneq ($(current_branch),main)
- echo $(ERR)
endif
# openProd :
# - open http://localhost:$(port)/
openH :
- open http://localhost:$(port)/~kleinen
open :
- open http://localhost:$(port)
openS :
- open http://localhost:4242/staging
openSD :
- open http://localhost:4242/stagingdrafts
openGH :
- gh browse
openActions :
- open https://github.com/bkleinen/bkleinen.github.io/actions
openSites:
- open https://home.htw-berlin.de/~kleinen/
- open https://bkleinen.github.io/
- open https://bkleinen.github.io/staging/
- open https://bkleinen.github.io/stagingdrafts/
openI:
- open http://localhost:4242/~kleinen/classes/ss2022/info1/
openN:
- open http://localhost:4242/~kleinen/classes/ss2022/networks/