This is the react frontend project
- We use vscode for developing our React Frontend project and the following extensions which will help a lot in our development process:
- Babel ES6/ES7
- Bracket Pair Colorizer
- ES7 React/Redux/GraphQL/React-Native snippets
- JavaScript (ES6) code snippets
- Node.js Modules Intellisense
- Path Intellisense
- Prettier - Code formatter
- Make sure to have installed node.js --> type node -v in your terminal to check if you have that installed.
- Clone this repo.
- In your command line and in the repository location type: npm install.
- Run Spring Boot application.
- npm run.
- To run on firefox: BROWSER=firefox npm start
-
feature/[FEATURE_NAME]
Every new feature that would be implemented should have its own branch
For example:
feature/crudUsers
-
fix/[BUG_REPORTED]
If we reported bugs in
develop
, create a specific branch to fix it.For example:
fix/createTask
After the work in your branch is finished, PR to develop
branch.
⚠️ ALERT : Do not attempt to push to master
branch under any circumstances. This can severly end up in having a deliverable faulty product or waste precious time of our lives. Seek for guidance if unsure.
- Implement basic user interface for crud operations.
- Make the Mockups for the user interface.