Sbox Monorepo
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Clone project
git clone https://github.com/emmoistner/sbox.git
cd sboxNode install
Must at least have node version 10.15 or above! Ignore this step if you already have node installed at the correct version
# This should install the version designated in .nvmrc
nvm installInstall dependencies
npm run setupRunning code
# This will start both the backend apis as well as the frontend react application
npm startruns npm install for every package (frontend, backend)
npm run setupruns npm start for every package (frontend, backend)
npm run startSetting up aws credentials (DEVOPS only)
Create the directory ~/.aws and file credentials
mkdir ~/.aws
cd ~/.aws
nano credentialsAdd your ID and Secret to ~/.aws/credentials
[default]
aws_access_key_id=<ID>
aws_secret_access_key=<SECRET>
[dev]
aws_access_key_id=<ID>
aws_secret_access_key=<SECRET>