Please read the PRIORITY LIST / App Features before contributing.
We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting an issue
- Discussing the current state of the code.
- Submitting a fix.
- Proposing new features
- Becoming a maintainer.
The code of conduct is described in CODE_OF_CONDUCT.md
.
All changes happen through pull requests. Pull requests are the best way to propose changes. We actively welcome your pull requests and invite you to submit pull requests directly here, and after review, these can be merged into the project.
This project is using the conventional commits standard. Please follow these steps to ensure your commit messages are standardized:
- Clone the repo
git clone https://github.com/workshopapps/engineerprofile360.web.git
. - Open your terminal & set the origin branch:
git remote add origin https://github.com/workshopapps/engineerprofile360.web.git
- Pull origin
git pull origin dev
- Create a new branch for the task you were assigned to, eg :
git checkout -b feat-csv-parser
- After making changes, do
git add .
- Commit your changes with a descriptive commit message :
git commit -m "your commit message"
. - To make sure there are no conflicts, run
git pull upstream dev
. - Push changes to your new branch, run
git push -u origin feat-csv-parser
. - Create a pull request to the
dev
branch. - Ensure to describe your pull request.
-
If you've added code that should be tested, add some test examples.
How to run locally:
- PHP 8.0.2 / Laravel (installed)
- MySql (installed)
- Composer (installed)
- Nodejs (installed)
- NPM / Yarn (installed)
- Clone the repo.
- move into the desired project folder
frontend
- Install all projects dependencies using
npm install
oryarn
- Start frontend development server.
npm run dev
oryarn start
.
Backend replies heavily on
PHP 8.x.x
andLaravel
. If you dont have php installed, follow this link on setting it up. Setup PHP ON (mac,linux,windows)
- move into the desired project folder
backend
- Install all projects dependencies using
composer install
.
If you dont have composer installed, download composer with this link.
- Start backend server locally..
php artisan serve
. This should startup a local server @http://localhost:8000
make sure MYSQL server has started locally before running the above commands.
We use GitHub issues to track public bugs. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue. Report a bug by opening a new issue; it's that easy!
_Note!! each issues given, must be followed by a specific track to ease the assessibility of other devs. for eg :- Reacreate the login screen page (FE), fix typo in utility class (BE). where FE & BE are Frontend and Backend respectively.