1
0
Fork 0

fix(docs): add checking out project

- edits inaccurate directions in Mac OS
- adds section for checking out the project
This commit is contained in:
BZ Libby 2020-08-13 18:14:40 -05:00 committed by Sean Sube
parent f00dcb9ca7
commit 2bdd9d4b61
3 changed files with 22 additions and 3 deletions

View File

@ -124,7 +124,7 @@ deploy:
$(TARGET_PATH) s3://$(DEPLOY_BUCKET) $(TARGET_PATH) s3://$(DEPLOY_BUCKET)
test: ## run mocha unit tests test: ## run mocha unit tests
test: test-cover test: test-check
test-check: ## run mocha unit tests with coverage reports test-check: ## run mocha unit tests with coverage reports
$(NODE_BIN)/nyc $(COVER_OPTS) \ $(NODE_BIN)/nyc $(COVER_OPTS) \

View File

@ -7,6 +7,7 @@
- [Setup](#setup) - [Setup](#setup)
- [Linux](#linux) - [Linux](#linux)
- [Mac OS](#mac-os) - [Mac OS](#mac-os)
- [Checking Out the Project](#checking-out-the-project)
- [Building](#building) - [Building](#building)
- [Compiling Typescript](#compiling-typescript) - [Compiling Typescript](#compiling-typescript)
- [Running Mocha Tests](#running-mocha-tests) - [Running Mocha Tests](#running-mocha-tests)
@ -47,7 +48,7 @@ Install `brew`:
Install `make`, `node`, and `yarn`: Install `make`, `node`, and `yarn`:
```shell ```shell
> brew install --with-default-names make > brew install make
> brew install node yarn > brew install node yarn
``` ```
@ -55,6 +56,24 @@ Install `make`, `node`, and `yarn`:
- https://formulae.brew.sh/formula/node - https://formulae.brew.sh/formula/node
- https://classic.yarnpkg.com/en/docs/install/#mac-stable - https://classic.yarnpkg.com/en/docs/install/#mac-stable
## Checking Out the Project
Clone the repository:
```shell
> git clone git@github.com:ssube/cautious-journey.git
```
You can also clone the repository through Github Desktop:
* [x-github-client://openRepo/https://github.com/ssube/cautious-journey](x-github-client://openRepo/https://github.com/ssube/cautious-journey)
Change the directory:
```shell
> cd ~/Documents/GitHub/cautious-journey/
```
## Building ## Building
Building the app is done through `make` and its targets. To see a list of available targets: Building the app is done through `make` and its targets. To see a list of available targets:

2
run.mk
View File

@ -1 +1 @@
ci: build test ci: build test