-
Download and install Git
This will be used to download the repository -
Download and install Git LFS
This will be used to download any required binary assets, such as images or pdfs -
Download and install Node
This is the programming language required to run the project. We currently support any of the versions prefixedv20.x.x
orv18.x.x
-
Download and Install Yarn
This manages all 3rd-party code dependencies
To download the repo into the current working directory, run:
git lfs clone https://github.com/IDEMSInternational/open-app-builder.git
Note - if you do a regular git clone, you can always run git lfs fetch --all
later to sync assets
Navigate to the newly cloned directory if you have not done so already:
cd open-app-builder
From the route of the project, run the following command to download and install the required dependencies:
yarn install
Note - you may have to do this from time to time when the code is updated
The app supports using different workspace or deployment configurations. These are stored in .idems_app/deployments
To use an existing deployment, run the following script:
yarn workflow deployment set
If you have already imported or created a deployment, this will present an interactive list of deployments to select from.
If you have no available deployments, see Deployment Documentation for information about creating and configuring deployments.
yarn start
This will start a local server and serve the app in your browser on http://localhost:4200.
In order to complete the setup process, navigate to the relevant section of the documentation from the options below, and continue with the steps outlined.
Please see Quickstart Authors
Please see Quickstart Developers