Wait-Less is an Android/IOS application that allows users to easily manage their resturatants. The frontend of the application is built using flutter and the backend is built using Java and is running on Azure's serverless platform Azure Functions along with MSSQL as the database. The CI/CD was built using Github Actions.
Running locally allows you to access all api through local host
- Move into the backend directory
Group-22-Spring-2020/Code/Backend/waitless-functions
- Package the application
mvn clean package
- Run the application
mvn azure-functions:run
-
Ensure Docker Desktop is Running
-
Move into the backend directory
cd Group-22-Spring-2020/Code/Backend/waitless-functions
-
Build and tag the docker container
docker build -t waitless-app .
-
Start the container
docker run -p 7071:7071 waitless-app:latest