2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 12:10:25 +02:00
website/Makefile

45 lines
1.5 KiB
Makefile
Raw Normal View History

2019-09-05 14:02:01 +02:00
help:
@echo " setup"
2019-09-05 14:02:01 +02:00
@echo " Build the development containers and install dependencies."
@echo " bootstrap"
@echo " Set up keys and seed databases."
@echo " IMPORTANT: this wipes any existing data in your local database."
2019-09-05 14:02:01 +02:00
@echo " build"
@echo " Build the production containers."
@echo " secret"
@echo " Generate a random base64 encoded secret"
setup:
@docker-compose build
@docker-compose run script npm install
@docker-compose run vault npm install
@docker-compose run auditorium npm install
@docker-compose run server go mod download
@docker-compose run homepage pip install --user -r requirements.txt
@echo "Successfully built containers and installed dependencies."
@echo "If this is your initial setup, you can run 'make bootstrap' next"
@echo "to create seed the database."
bootstrap:
@echo "Bootstrapping Server service ..."
@docker-compose run server make bootstrap
@echo ""
@echo "You can now log into the development backend using the following credentials:"
@echo ""
@echo "Email: develop@offen.dev"
@echo "Password: develop"
@echo ""
2019-09-11 12:44:51 +02:00
DOCKER_IMAGE_TAG ?= latest
ROBOTS_FILE ?= robots.txt.staging
2019-09-11 12:44:51 +02:00
2019-09-05 11:18:42 +02:00
build:
2019-09-11 12:44:51 +02:00
@docker build -t offen/server:${DOCKER_IMAGE_TAG} -f build/server/Dockerfile .
@docker build --build-arg siteurl=${SITEURL} --build-arg robots=${ROBOTS_FILE} -t offen/proxy:${DOCKER_IMAGE_TAG} -f build/proxy/Dockerfile .
2019-09-05 11:18:42 +02:00
2019-09-05 21:05:14 +02:00
secret:
@docker-compose run server make secret
.PHONY: setup bootstrap build secret