The backend filestore service which manages attachment metadata and S3 bucket access for the Advance Tariff Rulings services.
- Service Manager 2 installed
- SBT Version
>=1.x
installed - MongoDB version
>=3.6
installed and running on port 27017 - Localstack installed and running on port 4572
- Create an S3 bucket in localstack by using
awslocal s3 mb s3://digital-tariffs-local
within the localstack container
The easiest way to run MongoDB and Localstack for local development is to use Docker.
> docker run -d --restart unless-stopped --name localstack -e SERVICES=s3 -p4572:4566 -p8080:8080 localstack/localstack
> docker exec -it localstack bash
> awslocal s3 mb s3://digital-tariffs-local
> exit
Launch dependencies using sm2 --start DIGITAL_TARIFFS_DEPS
.
Use sbt run
to boot the app or run it with Service Manager 2 using sm2 --start BINDING_TARIFF_FILESTORE
.
This application runs on port 9583.
You can also run the DIGITAL_TARIFFS
profile using sm2 --start DIGITAL_TARIFFS
and then stop the Service Manager 2 instance of this service using sm2 --stop BINDING_TARIFF_FILESTORE
before running with sbt.
Run ./run_all_tests.sh
. This also runs scalafmt and does coverage testing.
or sbt test it/test
to run the tests only.
This code is open source software licensed under the Apache 2.0 License.