Last active
May 9, 2018 20:01
-
-
Save AABoyles/2ca2e9ba291eb1b48b1c8fc9c1f86b6d to your computer and use it in GitHub Desktop.
Set up a Mac to build MicrobeTrace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Step 1: Download Node | |
curl https://nodejs.org/dist/v10.0.0/node-v10.0.0-darwin-x64.tar.gz | tar -xz | |
# Step 2: Install Node | |
export PATH=/Users/`whoami`/node-v10.0.0-darwin-x64/bin:$PATH | |
# Step 3: Download MicrobeTrace | |
git clone https://github.com/CDCgov/MicrobeTRACE.git && cd MicrobeTrace | |
# Step 4: Build MicrobeTrace | |
npm install | |
npm run release | |
echo "Ready for Release Upload!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment