Re-organize the user-documentation up into the root directory to make it easier to find

Hopefully this also means it will be easier to contribute to 😸
This commit is contained in:
R. Tyler Croy 2018-09-24 13:03:02 -07:00
parent e05c3b4d0d
commit a33547465b
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
10 changed files with 7 additions and 2 deletions

View File

@ -2,3 +2,5 @@ node_modules/
coverage/
public/main.js
public/main.js.map
# Docs is rsynced in for the build from the root directory
docs/

View File

@ -2,8 +2,11 @@ include ../../node.mk
PATH:=./node_modules/.bin:../../tools:$(PATH)
build: depends
docs:
rsync -avz --exclude=developer ../../docs .
node ./scripts/render-docs
build: depends docs
webpack-cli
run: depends build
@ -13,4 +16,4 @@ run: depends build
FLAVOR=docker-cloud \
npm run client
.PHONY: run build
.PHONY: run build docs