This is a Next.js project bootstrapped with create-next-app.
To run this project you need the following installed:
- Node 18.17 or later
- PNPM
Clone this repository to your desired folder:
git clone https://github.com/Superfly101/medlink.gitInstall project dependencies:
cd medlink
pnpm installRun development server:
pnpm dev
#or
npm run dev
# or
yarn dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
Contributions, issues, and feature requests are welcome!
- Clone the repo
git clone https://github.com/Superfly101/medlink.git. - Create a new branch from the
devbranchgit checkout -b Feat/{feature you're working on} - Make sure your branch is up to date with the
devbranch:git pull origin dev - 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 origin dev. - Push changes to your new branch, run
git push -u origin Feat/{feature you're working on}. - Create a pull request to the
devbranch notmain. - Ensure to describe your pull request.
| Type | Description | |
|---|---|---|
| feat | Features | A new feature you're adding |
| fix | Bug Fixes | A bug fix |
| docs | Documentation | Documentation only changes |
| style | Styles | Features and updates relating to styling |
| refactor | Code Refactoring | A code change that neither fixes a bug nor adds a feature |
| perf | Performance Improvements | A code change that improves performance |
| test | Tests | Adding missing tests or correcting existing tests |
| build | Builds | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) |
| ci | Continuous Integrations | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) |
| chore | Chores | Other changes that don't modify, frontend or test files |
| revert | Reverts | Reverts a previous commit |
Sample Commit Messages
feat: Added plugin info endpoints:=featis used here because the feature was non-existent before the commit.