diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -64,10 +64,14 @@ compatibility-docs: bin/generate-syscall-docs upstream/gvisor/bazel-bin/runsc/li .PHONY: compatibility-docs # Run a local content development server. Redirects will not be supported. -server: all-upstream compatibility-docs +devserver: all-upstream compatibility-docs $(HUGO) server -FD --port 8080 .PHONY: server +server: website + cd public/ && go run main.go --custom-domain localhost +.PHONY: server + # Deploy the website to App Engine. deploy: $(APP_TARGET) cd public && $(GCLOUD) app deploy |