🔌Setup
Follow these steps to setup your development environment before developing on Remède.
Last updated
Was this helpful?
Follow these steps to setup your development environment before developing on Remède.
Remède uses Ionic. You will install npm dependencies and requirements to start developing with Ionic.
Make sure you have node 18 installed.
Move to the app/ folder
Install dependencies
npm installInstall Ionic
npm install -g @ionic/cliIonic framework let us build Remède for native platforms with Capacitor. {: .fs-3 .fw-300 }
Developing for Android does not need special requirements. Just install npm dependencies.
See Capacitor documentation for more information.
Make sure you have Android Studio installed.
Ionic Framework let us build Remède for iOS.
We do not build Remède for iOs yet. Follow the official Ionic documentation.
Remède has not been tested yet on iOS ! Build and use it at your own risks...
Remède has a public API written with FastAPI. {: .fs-3 .fw-300 }
Make sure you have Python 3 installed.
Install dependencies
Fetch database so the API can serve it
Remède latest database is not served by git because it is too large... We host our database on our own servers.
To fetch the latest database, you can use curl or wget as you prefer...
Execute these commands at project root.
With curl
With wget
Remède used to store its databases on Github LFS servers but our quota has been exceeded... The databases which are still stored in git lfs are outdated.
Remède includes external projects to its codebase using git submodules... {: .fs-3 .fw-300 }
To fetch or update the git submodules, just pull the distant repository inside the submodule's directory:
For example :
If you are pulling the submodules for the first time, you must execute
Lists of submodules :
/api-definition: api-definition
Last updated
Was this helpful?
Was this helpful?
pip install -r requirements.txtcurl -o data/remede.db https://api-remede.camarm.fr/download?variant=remedewget -O data/remede.db https://api-remede.camarm.fr/download?variant=remedecd api-definition && git pull origin maingit submodule update --init --recursive
