@ljmarquezg/pj-claim-handle-portal
v0.1.1
Published
Clone the repository ------------
Downloads
2
Readme
pj-associations-portal
Clone the repository
Go to https://github.com/AI-INNOVATION-CORP/pj-associations-portal
Create a folder in your computer with a short path, such as C:\Y\<PROJECT_NAME>
- Copy the repository URL from GitHub
- Use Git to clone the repository into your recently created folder. For example, open Git Bash, navigate to
C:\Y\<PROJECT_NAME>
and rungit clone <URL>
. - Checkout the "dev" branch of the project in order to get all the latest code in your local repository.
Set up the Frontend environment
- Open the console (CMD), navigate to
C:\Y\<PROJECT_NAME>
- Run the server:
a.
npm install
command to install all the project dependencies b. Once all dependencies have been installed, runnpm start
command. c. The browser will automatically open a new tab using the following address:http://localhost:3000/
.
Develop
- Create a branch from "dev" called
feature/<FEATURE_NAME>
,bugfix/<BUGFIX_NAME>
,integration/<INTEGRATION_NAME>
,improvement/<IMPROVEMENT_NAME>
oraddon/<ADDON_NAME>
depending on the task. Ask your project admin if you have any question. - Open the project in IntelliJ, Visual Studio, WebStorm or any other IDE of your preference.
- Write your code (always in English).
- Commit your changes. Give your commits significant names. Format your code before any commit
- When you finish a feature, create a Pull Request to "dev" and assign it to the person in charge of reviewing the code
Basic considerations
General
If you change to another branch and want to guarantee that everything is perfectly clean, stop the server and run the following commands:
npm start
command