Boldo can be found in any Paraguayan household. It is a magic team that can calm all kind of stomache ache.
This is the flutter based native application (iOs and Android) for Boldo - a telemedicine solution for doctors and patients. The mobile app is specifically for patients.
-
This project has the following dependencies:
- flutter (latest version)
-
Install dependencies:
flutter pub get
(normally happens automatically) -
Create a
.env
file in the project's root folder and add these contents:# ###################### locale enviroments ###################### SOCKETS_ADDRESS = http://localhost:8000 SERVER_ADDRESS = http://localhost:8008 KEYCLOAK_REALM_ADDRESS = http://localhost:8080/realms/iHub # ###################### SENTRY credentials to listen erros on release mode ########## # SENTRY_DSN=CREATE A PROJECT IN SENTRY FOR FLUTTER # SENTRY_ENV=ASK DEVELOPERS FOR KEY
Notes:
- Sentry flutter documentation
- For the SOCKETS_ADDRESS build the project boldo-socket
- For the SERVER_ADDRESS build the project boldo-server
- For the KEYCLOAK_REALM_ADDRESS build the project ihub-keycloak
-
Create a
.env_ice_server_config
file in the project's root folder and add these contents:ICE_SERVER_TURN_URL = "turn:<your.turn.uri>:<UDP-PORT>" ICE_SERVER_TURN_USERNAME = <guest> ICE_SERVER_TURN_CREDENTIAL = <credential> ICE_SERVER_STUN_URL = stun:<your.stun.uri>:<UDP-PORT> ICE_SERVER_STUN_USERNAME = <guest> ICE_SERVER_STUN_CREDENTIAL = <credential>
-
Create a
.env_app_config
file in the project's root folder and add these contents:APP_URL_DOWNLOAD= DEFAULT_APP_URL_DOWNLOAD= LAST_STABLE_VERSION=<LAST APP VERSION WITH BREAKING CHANGES> LAST_AVAILABLE_VERSION=<LAST APP VERSION>
Notes:
- APP_URL_DOWNLOAD represent url to redirect to store for every platform
- DEFAULT_APP_URL_DOWNLOAD url to redirect page of promotion to get app
6flutter run
- to start the app on an available device
Note: You can check the availability of connected devices by running flutter doctor
.
flutter build apk --split-per-abi \
--dart-define=SOCKETS_ADDRESS=https://sockets.boldo.penguin.software \
--dart-define=SERVER_ADDRESS=https://api.boldo.penguin.software \
--dart-define=KEYCLOAK_REALM_ADDRESS=https://sso-test.pti.org.py/auth/realms/iHub \
--dart-define=SENTRY_DSN=ASK DEVELOPERS FOR KEY
The webRTC and chatty libraries causes a lot of unnecessary comments. To disable them you can add !org.webrtc,!I/chatty
as a filter in your VSCode debug console. To ignore even more, add those as well !E/CameraCaptureSession,!EGL_emulation,!FlutterWebRTCPlugin,!HostConnection
.
To allow as many people as possible access to health services, this applications aims to run also on old devices. Currently we support the following minmal platform versions:
- iOS: 11
- Android: 5.0 (Lollipop)
The project is currently under heavy development but contributors are welcome. For bugs or feature requests or eventual contributions, just open an issue. Contribution guidelines will be available shortly.
This project was created as part of the iHub COVID-19 project in collaboration between Penguin Academy and PTI (Parque Tecnológico Itaipu Paraguay).
This project is licensed under GPL v3