From f8eb30c455cd2a471ca99d0a95493508206c2d40 Mon Sep 17 00:00:00 2001 From: Jonas Sander <29028262+Jonas-Sander@users.noreply.github.com> Date: Sat, 2 Dec 2023 16:43:41 +0100 Subject: [PATCH] Update CONTRIBUTING.md Add changing directory to `app`. --- CONTRIBUTING.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 25c5efe41..7736e03e7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -94,7 +94,15 @@ When you are using VS Code, no further steps should be necessary, because we inc ## Running the app -After you have set up your development environment, you can run the app. To run the app, you need to execute the following command: +After you have set up your development environment, you can run the app. + +First change the working directory to the `app` folder by running: + +```sh +cd app +``` + +To run the app, you can then execute the following command: ### Android & iOS @@ -108,4 +116,4 @@ fvm flutter run --flavor dev --target lib/main_dev.dart fvm flutter run --target lib/main_dev.dart ``` -This command runs the app in the development mode. Keep in mind that the app will not use our production backend. Instead, it will use the development backend. This means that you can't use the app with your production account. You need to create a new account on the development backend. \ No newline at end of file +This command runs the app in the development mode. Keep in mind that the app will not use our production backend. Instead, it will use the development backend. This means that you can't use the app with your production account. You need to create a new account on the development backend.