Skip to content

Latest commit

 

History

History
31 lines (29 loc) · 819 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (29 loc) · 819 Bytes

Contributing to alphafold-on-fire

Backend

Getting started with Development

The easiest way to start up a dev environment is to use the docker-compose.dev.yaml file. You will need docker and docker-compose installed as prerequisites.

cd backend/
docker-compose up -d --build

The app will be exposed on localhost:8000.

Keycloak

Users:

[
  {
    "username": "jane",
    "password": "jane"
  }
]

How to export the keycloak realm:

docker exec -it keycloak-aof /opt/jboss/keycloak/bin/standalone.sh \
-Djboss.socket.binding.port-offset=100 -Dkeycloak.migration.action=export \
-Dkeycloak.migration.provider=singleFile \
-Dkeycloak.migration.realmName=dev \
-Dkeycloak.migration.usersExportStrategy=REALM_FILE \
-Dkeycloak.migration.file=/tmp/io/dev-realm.json