Since our service uses Cognito as the IDP, you will need to configure AWS in your environment.
- Set up a new profile using the credentials that were provided for you, and set it as the default in ~/.aws/credentials.
- Install the aws-cli accordingly to your Operational System;
- Run
aws configure
, and use the Access Key ID and Secret Access Key that were provided for you; - Leave the rest of the configurations as default (
us-east-1
andNone
).
To start the local infrastructure for development, simply run:
make docker-start
Then, make sure that the Maven dependencies are installed and that the project components are working properly by running:
mvn clean test
Finally, just run ApiApplication. The server will be running at http://localhost:8080.
This service is responsible for providing the backend functionalities for our CRM! Its main responsibilities includes:
- CRM User registration and login;
- Manage customers personal information;
- List existing customers.
Here are the underlying technologies that provides all the support needed for this service:
- Spring 2.7.0;
- Java 11;
- AWS DynamoDB database;
- AWS S3;
- Cognito as IDP;
- New Relic for APM.
The technical documentation for the APIs is available through Swagger, in /swagger-ui.html path.