forked from nginxinc/nginx-amplify-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
52 lines (39 loc) · 1.54 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
THEME_MODULE = github.com/nginxinc/nginx-hugo-theme
## Pulls the current theme version from the Netlify settings
THEME_VERSION = $(NGINX_THEME_VERSION)
.PHONY: all clean hugo-mod build-production build-staging hugo-server-drafts hugo-server netlify
all: hugo-mod build-production
all-staging: hugo-mod build-staging
all-dev: hugo-mod build-dev
# Removes the public directory generated by the `hugo` command
clean:
if [[ -d ${PWD}/public ]] ; then rm -rf ${PWD}/public && echo "Removed public directory" ; else echo "Did not find a public directory to remove" ; fi
hugo-mod:
hugo mod get $(THEME_MODULE)@v$(THEME_VERSION)
# Builds using the Hugo "staging" environment
# For deploys to docs.nginx.com only
build-production: hugo-mod
hugo --gc -e production
# Builds using the Hugo "staging" environment
# For deploys to docs-staging.nginx.com only
build-staging: hugo-mod
hugo --gc -e staging
# Builds using the Hugo "development" environment
# For deploys to docs-dev.nginx.com only
build-dev: hugo-mod
hugo --gc -e development
# Runs the Hugo server with content marked as draft
# Serves docs at localhost:1313
docs-drafts:
hugo server -D --disableFastRender
# Runs the Hugo server
# Serves docs at localhost:1313
docs:
hugo server --disableFastRender
# Can be used to deploy to netlify from your local
# development environment.
# Requires a netlify login.
netlify: clean
netlify deploy --build -d public --alias $(shell git branch --show-current)-branch
deploy-preview: hugo-mod
hugo --gc -d public/nginx-amplify -b ${NETLIFY_DEPLOY_URL}/nginx-amplify