Skip to content

Latest commit

ย 

History

History
66 lines (44 loc) ยท 2.46 KB

File metadata and controls

66 lines (44 loc) ยท 2.46 KB

Edit in Eraser

GetYourWay API ๐Ÿ›ฌ

Unit Tests Build and Deploy to Azure

๐Ÿ› ๏ธ Installation

Before running the application.

  1. Login to the azure portal.
  2. Go to the network tab in the SQL Server instance and add your IPv4 address, so you can connect to the server from your device. Run the application via ./mvnw spring-boot:run in the home directory.

๐Ÿ” Authorisation Flow

The following diagram shows how the application authorisation flow works:

Authorisation Flow

๐Ÿ—‚๏ธ Entity Relationship Diagram

ERD

๐Ÿค Contributions

To follow the feature branch workflow, create a new branch with the following.

Ensure you are in front of the dev branch to minimise the risk of conflicts:

git pull origin dev

Ensure there is a .gitignore file so your target folder is not pushed.

Create a new branch with an appropriate name of the feature you are working on:

git checkout -b feature/name

After each session or sufficicient changes.

git add .
git commit -m "Commit Message"

Once you are ready with your feature pull the latest dev branch.

git checkout dev
git pull origin dev

Go back to your own branch and merge dev into your own branch.

git checkout feature/name
git merge dev

If there are conflicts please resolve them. Once resolved, Login to Github and create a pull request and wait for someone to review it. Once reviewed your branch will be merged into dev.