|
1 |
| -[](https://circleci.com/gh/lagos-devs/hiddenwisdom-react-js/tree/master) |
2 |
| -[](https://coveralls.io/github/lagos-devs/hiddenwisdom-react-js?branch=master) |
| 1 | +<p align="center"> |
| 2 | + <strong style="font-size: 120px">Hidden Wisdom React</strong> |
| 3 | +</p> |
| 4 | +<p align="center"> |
| 5 | + <a href="https://circleci.com/gh/lagos-devs/hiddenwisdom-react-js/tree/master"> |
| 6 | + <img src="https://circleci.com/gh/lagos-devs/hiddenwisdom-react-js/tree/master.svg?style=svg" |
| 7 | + alt="CircleCI"> |
| 8 | + </a> |
| 9 | + <a href="http://waffle.io/lagos-devs/hiddenwisdom-api"> |
| 10 | + <img src="https://badge.waffle.io/lagos-devs/hiddenwisdom-react-js.svg?label=ready&title=Ready" |
| 11 | + alt="build status"> |
| 12 | + </a> |
| 13 | + <a href="https://coveralls.io/github/lagos-devs/hiddenwisdom-react-js?branch=master"> |
| 14 | + <img src="https://coveralls.io/repos/github/lagos-devs/hiddenwisdom-react-js/badge.svg?branch=master" |
| 15 | + alt="Coverage Status"> |
| 16 | + </a> |
| 17 | +</p> |
| 18 | +<p align="center"> |
| 19 | + <a href="https://github.com/lagos-devs/hiddenwisdom-react-js/graphs/contributors"> |
| 20 | + <img src="https://img.shields.io/github/contributors/lagos-devs/hiddenwisdom-react-js.svg?maxAge=2592000?style=plastic" |
| 21 | + alt="GitHub contributors"> |
| 22 | + </a> |
| 23 | + <a href="https://github.com/lagos-devs/hiddenwisdom-react-js/issues?q=is%3Aissue+is%3Aclosed"> |
| 24 | + <img src="https://img.shields.io/github/issues-closed/lagos-devs/hiddenwisdom-react-js.svg?maxAge=2592000?style=plastic" |
| 25 | + alt="GitHub closed issues"> |
| 26 | + </a> |
| 27 | + <a href="https://github.com/lagos-devs/hiddenwisdom-react-js/issues"> |
| 28 | + <img src="https://img.shields.io/github/issues/lagos-devs/hiddenwisdom-react-js.svg?maxAge=2592000" |
| 29 | + alt="GitHub issues"> |
| 30 | + </a> |
| 31 | + <a href="https://github.com/lagos-devs/hiddenwisdom-react-js/pulls"> |
| 32 | + <img src="https://img.shields.io/github/issues-pr/lagos-devs/hiddenwisdom-react-js.svg?maxAge=2592000?style=plastic" |
| 33 | + alt="GitHub pull requests"> |
| 34 | + </a> |
| 35 | +</p> |
| 36 | +<p align="center"> |
| 37 | + <a href="https://github.com/lagos-devs/hiddenwisdom-react-js/blob/develop/LICENSE"> |
| 38 | + <img src="https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000?style=plastic" |
| 39 | + alt="license"> |
| 40 | + </a> |
| 41 | +</p> |
| 42 | +<p align="center"><sup><strong>Reviving our wealth cultural heritage of wisdom and proverbs</strong></sup></p> |
3 | 43 |
|
4 | 44 |
|
5 |
| -# Hidden Wisdom React |
| 45 | +## [SETUP]() |
| 46 | +This is the Frontend React based app for Hidden Wisdom. |
6 | 47 |
|
7 |
| -This is the Frontend React based app for hidden wisdom |
| 48 | +### Prerequisites |
8 | 49 |
|
9 |
| -## Setup the app |
| 50 | +Install [Node.js](http://nodejs.org) |
| 51 | + - on OSX use [homebrew](http://brew.sh) `brew install node` |
| 52 | + - on Windows use [chocolatey](https://chocolatey.org/) `choco install nodejs` |
10 | 53 |
|
11 |
| -1. Clone the app: `git clone https://github.com/lagos-devs/hiddenwisdom-react-js.git` |
12 |
| -2. Install dependences: `npm install` |
13 |
| -3. Ensure you have `babel-cli` on your system: `npm install -g babel-cli` |
14 |
| -4. Start the application: `npm start` |
| 54 | +### Clone |
15 | 55 |
|
16 |
| -## Contribute |
| 56 | +Navigate to your work directory and clone the project |
| 57 | +```bash |
| 58 | +$ git clone https://github.com/<YOUR-NAME>/hiddenwisdom-react-js.git |
| 59 | +$ cd hiddenwisdom-react-js |
| 60 | +``` |
17 | 61 |
|
18 |
| -New and exiting contributors are welcome! |
| 62 | +### Install |
| 63 | + |
| 64 | +Navigate to `hiddenwisdom-react-js` directory, then run `npm install` to install Node packages, ensure you have `babel-cli` on your system |
| 65 | +```bash |
| 66 | +$ npm install -g webpack |
| 67 | +$ npm install -g babel-cli |
| 68 | +$ npm install |
| 69 | +``` |
| 70 | + |
| 71 | +### Start the Server |
| 72 | + |
| 73 | +Run `npm start` to start `hiddenwisdom-react-js` server |
| 74 | +```bash |
| 75 | +$ npm start |
| 76 | +``` |
| 77 | + |
| 78 | +### Lint |
| 79 | + |
| 80 | +Run code analysis using below command. |
| 81 | +```bash |
| 82 | +$ npm run lint |
| 83 | +$ npm run lint:watch |
| 84 | +``` |
| 85 | + |
| 86 | +### Test |
| 87 | + |
| 88 | +Run the unit tests using below command (via mocha). |
| 89 | +```bash |
| 90 | +$ npm run test |
| 91 | +$ npm run test:watch |
| 92 | +$ npm run test:coverage |
| 93 | +``` |
| 94 | + |
| 95 | + |
| 96 | +## [CONTRIBUTING](CONTRIBUTING.md) |
| 97 | + |
| 98 | +New and exciting contributors are welcome! |
19 | 99 |
|
20 | 100 | Please read through the [CONTRIBUTING GUIDE](https://github.com/lagos-devs/hiddenwisdom-react-js/blob/develop/CONTRIBUTING.md) before picking up/raising an issue. It's quite short :)
|
| 101 | + |
| 102 | + |
| 103 | +## [LICENSE](LICENSE) |
| 104 | + |
| 105 | +MIT License |
0 commit comments