From 2dd404c02ce033d89cc6554db06c738a4c443ad4 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Wed, 2 Feb 2022 13:15:14 +0530 Subject: [PATCH 1/4] chore: update project setup info --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 98095bb..af480d4 100644 --- a/README.md +++ b/README.md @@ -80,10 +80,12 @@ This guide helps you practice using Authorizer to evaluate it before you use it 1. Fork the [authorizer](https://github.com/authorizerdev/authorizer) repository (**Skip this step if you have access to repo**) 2. `git clone https://github.com/authorizerdev/authorizer.git` 3. `cd authorizer` -4. `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) -5. Build the code `make clean && make` +5. `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) +6. Build Dashboard `make build-dashboard` +7. Build App `make build-app` +8. Build Server `make clean && make` > Note: if you don't have [`make`](https://www.ibm.com/docs/en/aix/7.2?topic=concepts-make-command), you can `cd` into `server` dir and build using the `go build` command -6. Run binary `./build/server` +9. Run binary `./build/server` ## Install using binaries From c6f01ce839f969e131d1b85aa5074dc9522edc1f Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Wed, 2 Feb 2022 13:15:54 +0530 Subject: [PATCH 2/4] chore: update project setup info in contributing --- .github/CONTRIBUTING.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 94b6dfd..acc12f2 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -45,10 +45,12 @@ Please ask as many questions as you need, either directly in the issue or on [Di 1. Fork the [authorizer](https://github.com/authorizerdev/authorizer) repository (**Skip this step if you have access to repo**) 2. `git clone https://github.com/authorizerdev/authorizer.git` 3. `cd authorizer` -4. `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) -5. Build the code `make clean && make` +5. `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) +6. Build Dashboard `make build-dashboard` +7. Build App `make build-app` +8. Build Server `make clean && make` > Note: if you don't have [`make`](https://www.ibm.com/docs/en/aix/7.2?topic=concepts-make-command), you can `cd` into `server` dir and build using the `go build` command -6. Run binary `./build/server` +9. Run binary `./build/server` ### Testing From 271e9013987afbcba69ba9513a46bb405abb5eb8 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Wed, 2 Feb 2022 13:17:35 +0530 Subject: [PATCH 3/4] chore: update project setup info --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index af480d4..f8beb5b 100644 --- a/README.md +++ b/README.md @@ -78,9 +78,9 @@ This guide helps you practice using Authorizer to evaluate it before you use it ### Project Setup 1. Fork the [authorizer](https://github.com/authorizerdev/authorizer) repository (**Skip this step if you have access to repo**) -2. `git clone https://github.com/authorizerdev/authorizer.git` -3. `cd authorizer` -5. `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) +2. Clone repo: `git clone https://github.com/authorizerdev/authorizer.git` or use the forked url from step 1 +3. Change directory to authorizer: `cd authorizer` +5. Create Env file `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) 6. Build Dashboard `make build-dashboard` 7. Build App `make build-app` 8. Build Server `make clean && make` From fec43f55f2bcbfd186889e9c949d483073ed84cc Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Wed, 2 Feb 2022 13:18:26 +0530 Subject: [PATCH 4/4] chore: update project setup info --- .github/CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index acc12f2..4ee4631 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -43,9 +43,9 @@ Please ask as many questions as you need, either directly in the issue or on [Di ### Project Setup for Authorizer core 1. Fork the [authorizer](https://github.com/authorizerdev/authorizer) repository (**Skip this step if you have access to repo**) -2. `git clone https://github.com/authorizerdev/authorizer.git` -3. `cd authorizer` -5. `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) +2. Clone repo: `git clone https://github.com/authorizerdev/authorizer.git` or use the forked url from step 1 +3. Change directory to authorizer: `cd authorizer` +5. Create Env file `cp .env.sample .env`. Check all the supported env [here](https://docs.authorizer.dev/core/env/) 6. Build Dashboard `make build-dashboard` 7. Build App `make build-app` 8. Build Server `make clean && make`