forked from hashicorp/terraform-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cd6c10
commit 81a591c
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
###################################################### | ||
# NOTE: This file is managed by the Digital Team's # | ||
# Terraform configuration @ hashicorp/mktg-terraform # | ||
###################################################### | ||
|
||
.DEFAULT_GOAL := website | ||
|
||
# Set the preview mode for the website shell to "developer" or "io" | ||
PREVIEW_MODE ?= developer | ||
REPO ?= terraform-cdk | ||
|
||
# Enable setting alternate docker tool, e.g. 'make DOCKER_CMD=podman' | ||
DOCKER_CMD ?= docker | ||
|
||
CURRENT_GIT_BRANCH=$$(git rev-parse --abbrev-ref HEAD) | ||
LOCAL_CONTENT_DIR=../docs | ||
PWD=$$(pwd) | ||
|
||
DOCKER_IMAGE="hashicorp/dev-portal" | ||
DOCKER_IMAGE_LOCAL="dev-portal-local" | ||
DOCKER_RUN_FLAGS=-it \ | ||
--publish "3000:3000" \ | ||
--rm \ | ||
--tty \ | ||
--volume "$(PWD)/docs:/app/docs" \ | ||
--volume "$(PWD)/img:/app/public" \ | ||
--volume "$(PWD)/data:/app/data" \ | ||
--volume "$(PWD)/redirects.js:/app/redirects.js" \ | ||
--volume "next-dir:/app/website-preview/.next" \ | ||
--volume "$(PWD)/.env:/app/.env" \ | ||
-e "REPO=$(REPO)" \ | ||
-e "PREVIEW_FROM_REPO=$(REPO)" \ | ||
-e "IS_CONTENT_PREVIEW=true" \ | ||
-e "LOCAL_CONTENT_DIR=$(LOCAL_CONTENT_DIR)" \ | ||
-e "CURRENT_GIT_BRANCH=$(CURRENT_GIT_BRANCH)" \ | ||
-e "PREVIEW_MODE=$(PREVIEW_MODE)" | ||
|
||
# Default: run this if working on the website locally to run in watch mode. | ||
.PHONY: website | ||
website: | ||
@echo "==> Downloading latest Docker image..." | ||
@$(DOCKER_CMD) pull $(DOCKER_IMAGE) | ||
@echo "==> Starting website..." | ||
@$(DOCKER_CMD) run $(DOCKER_RUN_FLAGS) $(DOCKER_IMAGE) | ||
|
||
# Use this if you have run `website/build-local` to use the locally built image. | ||
.PHONY: website/local | ||
website/local: | ||
@echo "==> Starting website from local image..." | ||
@$(DOCKER_CMD) run $(DOCKER_RUN_FLAGS) $(DOCKER_IMAGE_LOCAL) | ||
|
||
# Run this to generate a new local Docker image. | ||
.PHONY: website/build-local | ||
website/build-local: | ||
@echo "==> Building local Docker image" | ||
@$(DOCKER_CMD) build https://github.com/hashicorp/dev-portal.git\#main \ | ||
-t $(DOCKER_IMAGE_LOCAL) | ||
|