From 23e4d598019979018c6920c1fb2256bec370df0c Mon Sep 17 00:00:00 2001 From: lza_menace Date: Wed, 8 Jul 2020 23:35:43 -0700 Subject: [PATCH] clarify some points in the readme and adjust makefile --- Makefile | 3 --- README.md | 11 ++++++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3619a6f..b1d2a94 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,6 @@ help: @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' -setup: ## Install dependencies to the system - sudo bash setup.sh - up: ## Fetch images and run containers docker-compose up -d diff --git a/README.md b/README.md index 9262ffa..992a2f6 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ CI system and build tooling to support automation for Wownero development. Install Docker. I'm using a Ubuntu 20.04 machine. Not a HA or scaling setup, just containers running on a box. Setup script provided. ``` -make setup +sudo bash setup.sh ``` Next, setup the secrets: @@ -19,3 +19,12 @@ vim .env ``` Use `docker-compose` to start the services. A `Makefile` has been provided for convenience with all of the typical commands to be run. + + +``` +make up +make logs +make down +``` + +Run `make` to see the available commands.