Skip to content
This repository has been archived by the owner on Jul 5, 2021. It is now read-only.

OPG Historic Refunds: Managed by opg-org-infra & Terraform

License

Notifications You must be signed in to change notification settings

ministryofjustice/opg-refunds

Repository files navigation

LPA Refunds Service

The Office of the Public Guardian LPA Refunds service: Managed by opg-org-infra & Terraform.

Local Development Setup

Intially, download the repo via:

git clone [email protected]:ministryofjustice/opg-refunds.git
cd opg-refunds

Within opg-refunds directory to run the project for the first time use the following:

make dc-run
make

The Makefile will fetch secrets using aws secretsmanager and docker-compose commands together to pass along environment variables removing the need for local configuration files.

The Public service will be available via https://localhost:9001/start The Caseworker service will be available via https://localhost:9002

The Caseworker API service will be available (direct) via http://localhost:9003

After the first time, you can run the project by:

make

Updating composer dependencies

Composer install is run when the app containers are built, and on a standard docker-compose up.

It can also be run independently with:

docker-compose run <service>-composer

New packages can be added with:

docker-compose run <service>-composer composer require author/package

Packages can be removed with:

docker-compose run <service>-composer composer remove author/package