Skip to content

Instantly share code, notes, and snippets.

@AABoyles
Last active May 9, 2018 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AABoyles/2ca2e9ba291eb1b48b1c8fc9c1f86b6d to your computer and use it in GitHub Desktop.
Save AABoyles/2ca2e9ba291eb1b48b1c8fc9c1f86b6d to your computer and use it in GitHub Desktop.
Set up a Mac to build MicrobeTrace
#!/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