Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

All the files are now configured and you can run Keycloak and PostgreSQL.

Info

Note that realm-export.json is configured with the SSO integration for the “Development” environment, and will only work with the resource and secret for the Development JSON.

...

Build

  1. Start Docker, open a terminal in the /chefs_build directory, and run the following command:

    Code Block
    docker compose up

    This will start up an instance for your Keycloak and PostgreSQL containers. If you don’t want to keep the terminal open, you can append a -d to the end of the command above.

  2. Next, open a terminal in the directory /common-hosted-form-service/app and run the following commands:

    Code Block
    npm install
    npm run migrate
    npm run seed:run
    npm run serve

    This will start the process for the CHEFS API.

  3. Open another terminal in the directory /common-hosted-form-service/app/frontend and run the following commands:

    Code Block
    npm install
    npm run serve

    This will start the process for the CHEFS front end.

...