-
Project name: [Online Therapist]
-
Project description: This website aims to connect therapists and counselors with those who need help and provide more information about mental health services.
-
Technology used: Nextjs, TailwindCSS, i18next, Husky, Prettier, Eslint, Commitlinter (Conventional Commits)
-
Team members:
- Abrar Alkhorasani
- Jehad Almaliki
- Mohammed Aljaberi
- Haneen Abdulglil
- Mohammed Basurrah
- Dhiaa Alhaq Shalabi
-
Bootcamp: GIZ YE 2022
npm install -g commitizen // Installs commitizen
npx husky install // Installs Husky
chmod ug+x .husky/* // Gives husky executable extension
npm install // Installs the node modules
- When commiting you will have to use
git cz
and then go through the process. Look at the first commit I made to know what that means. - The translation process is done using the i18next library. There's an example in the index.js file of how this is done. Check this github project for more info on how to use the i18next library: i18next
- When writing commits, commitlinter library is used to make sure that your commits are consistent with the conventional commits. To learn more about it refer to the guidelines in Canvas or the conventional commits site.
- The
layout
folder contains the components that will be used in the layout of pages, so components like the header and footer will be placed there.
Good luck and happy coding :D
To build this project run
Using npm
npm run build
Using yarn
yarn build
To deploy this project run
npm run build
npm run start
Use the following command to run the project in development mode
npm run dev
Deployed on Vercel: iDev Therapist
We use an agile continuous integration methodology, so the version is frequently updated and development is really fast.
-
develop is the development branch.
-
master is the production branch.
-
No other permanent branches should be created in the main repository, you can create feature branches but they should get merged with the master.
Steps to work with feature branch
- To start working on a new feature, create a new branch prefixed with feature and followed by feature name. (ie. feature/featurename-issuenumber)
- Once you are done with your changes, you can raise PR.
Steps to create a pull request
- Make a PR to develop branch.
- Comply with the best practices and guidelines e.g. where the PR concerns visual elements it should have an image showing the effect.
- It must pass all continuous integration checks and get positive reviews.
- After this, changes will be merged to develop branch.