...
All the files are now configured and you can run Keycloak and PostgreSQL.
Info |
---|
Note that |
...
Build
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.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.
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.
...