Skip to content

Set up locally (optional)

Reffx edited this page May 30, 2021 · 3 revisions
It's recommended to use the docker file in the backend to get the application running. 
However, if you choose to run the frontend independently, here is the guide on how to get it done without Docker.

Get the frontend run without docker!

Inside VsCode, install following extensions:

Use the following command in the terminal to check wheter flutter is installed correctly.

flutter doctor -v

Project Setup

Step 1: Download or clone this repo by using the link below:

https://github.com/webuko/frontend.git

Step 2: Open the project folder in VScode.

Step 3 : Go to project root and execute the following command in console to get the required dependencies:

flutter pub get 

Step 4: Befor starting the frontend, make sure that the backend is running. Change the api BASE URL in host.dart so that it accesses a running backend.

Step 5: Start the application.

flutter run -d chrome
Clone this wiki locally