Monorepo containing bloxifi's client-side code
This repo utilizes lerna and yarn workspaces for all its monorepo needs.
Primary technologies include:
After cloning the repo, run yarn inside the repo root.
The repo is organized into apps/ and packages/. packages/ contain all re-usable code across the codebase, while apps/ contain all applications.
Each app has a serve and build npm script and by utilising lerna we can build all apps in parallel by running yarn build in the repository root, or spin up a development server yarn serve
Summary
- Install node.js https://www.webucator.com/how-to/how-install-nodejs-on-mac.cfm or run in Terminal:
brew install node - run in Terminal command:
npm install --global yarn git clone [email protected]:BloxiFi/bloxifi-fe.git- in root folder run command:
yarn && yarn lerna bootstrap - run command:
yarn servein root folder
You can see all storybook components used in project here
We use ESLint for linting and Prettier for formatting our code, specifics can be seen in respective configs.