Using the BRIDGE AppΒΆ
The BRIDGE app can be used online at https://bridge.isaric.org, or you can build your own local version and run it (via Docker) using the following instructions:
Checkout the local BRIDGE Git branch on which you want to build and run the app - usually this will be the
mainbranch, but it could also be any feature or fix branch. If you have access to a command line shell you can do this using:
git checkout <target branch name>
Note
If you have any unsaved/unstaged/uncommited changes on your current branch then you can either stage and commit these (a combination of git add and git commit), or discard (git reset) or stash them somewhere (git stash), before switching to the target branch.
Build the Docker image (named
isaric-bridge) on the branch using:
docker build -t isaric-bridge .
Run the app in the container (named
isaric-bridge) using the image:
docker run -d -p 80:8050 --name isaric-bridge isaric-bridge
The app will accessible at http://localhost:80.