blue-jay/blueprint

Test on OS X

josephspurrier opened this issue · 5 comments

Update documentation accordingly.

ralic commented

I've tested it on OS X and no issue found so far

Instructions :

Prepare golang support on macOS

brew install go
export PATH=$PATH:/usr/local/opt/go/libexec/bin
export GOPATH=/usr/local/opt/go/libexec/bin

Prepare jay-cli support on macOS

git clone https://github.com/blue-jay/jay.git
cd jay
go build
cp jay /usr/local/bin

Quick-start for blue-print

git clone https://github.com/blue-jay/blueprint.git
go get github.com/blue-jay/jay/
go get github.com/blue-jay/blueprint/
cd blueprint

Database preparation

( vi env.json to change MySQL user & password before run the script)
export JAYCONFIG=./env.json
jay env make
jay migrate all

Run the server

go build
sudo ./blueprint
open http://localhost

@ralic Awesome! Thanks for the instructions too. I need to add this to a wiki page.

I added the instructions to: https://github.com/blue-jay/blueprint/wiki/Blueprint-Setup-for-OS-X. I have to go through and test them again - I made a couple changes.

Testing is complete. I added a quick instruction for docker too.