studiosubu-bootstrap-components v0.0.2
Subu Bootstrap Components
Setup
Step 1: Install nvm
To run this project, you'll want to make sure you have the right version of Node and the requisite software to install all dependencies.
Windows
If you're on windows, download the latest version of nvm here: https://github.com/coreybutler/nvm-windows/releases
Mac
If you're on Mac, install Homebrew (https://brew.sh/) then run the following commands:
brew update
brew install nvm
mkdir ~/.nvmAdd the following lines to your /.bash_profile:
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.shRun the following commands in your terminal:
source ~/.bash_profile
echo $NVM_DIRStep 2: Install Node
Run the following commands:
nvm install 8.1.1
nvm use 8.1.1Step 3: Clone the repository
In the directory which will contain the code for this application, run:
git clone <https_url>Where <https_url> is the url provided for cloning over HTTPS in the Bitbucket interface.
Then enter into the app repository by running:
cd studiosubu-bootstrap-componentsStep 4: Install Dependencies
Within the app repository, run the following commands to install all dependencies:
npm install -g yarn
yarnLocal Development
To run Storybook (a sandbox for visually testing components) run:
yarn run storybook