Africa I Frontend
- Make sure you have
node
andnpm
oryarn
installed on your machine - Clone this repository and cd into it
- Install dependencies using
npm install
oryarn
oryarn install
- Write tests to ensure they are passing by using
npm test
oryarn test
- Run the dev server using
npm run develop
oryarn develop
- To generate an optimized production build, run
npm run build
- To deploy a production build, run
npm run deploy
- Make sure the
develop
branch is up to date - Create a new branch from
develop
, It should be named according to the value you want to add on the platform - cd into it, go ahead and implement your solution
- Make sure you write unit tests for your components and functions
- Raise a pull request once you're done