profile_service
This app/solution can be run in 2 different environments.
To configure this application there are 2 files that require mondifcation.
-
./src/config.js
This file contains the majority of the variables that define the diference between your production, development, and test environments that are not secrets.
-
./.env
This file contains the secrets required for the application and can be set eitehr through ENV variables or through this file.
MQ_HOST
= Host of the RabbitMQ instance set in./src/config.js
MQ_USER
= Username for RabbitMQ instance set in./src/config.js
MQ_PASS
= Password for RabbitMQ instanceaccount_url
= The url of the Concierge instance to be used for this micro serviceclient_id
= The client_ID from the client created in Concierge for this micro serviceclient_secret
= The client secret for the Client ID listed above.PRISMA_HOST
= Host of the prisma instance that will be used by this micro serviceELASTIC_HOST
= Host of the Elastic search instance that will be used by this micro serviceIMAGE_URL
= Host of the image server instance that will be used by this micro serviceENGINE_API_KEY
= Apollo engine api key
To setup this application in development run the following commands:
sudo docker-compose -f docker-compose-dev.yml up
sudo npm install
npm start dev
The profile as a service playground endpoint can now be reached at http://localhost:4000/playground and the graphql endpoint at http://localhost:4000/graphql The prisma service can be reached at http://localhost:4466/profile
To setup this application for production:
sudo docker-compose up --build -d
The profile as a service playground endpoint can now be reached at http://localhost:4000/playground and the graphql endpoint at http://localhost:4000/graphql
To run tests from the root of the project:
sudo docker-compose -f docker-compose-test.yml up -d
npm test
Validation is implemented for some fields.
Fields with <-- have a specific validation.
profile
{
gcID,
name,
email, <--
avatar,
mobilePhone, <--
officePhone, <--
address:
{
streetAddress,
city,
province,
country,
postalcode
}
titleEn,
titleFr,
org
}
When initializing a 'Profile' only gcID, name and email are mandatory fields.
Email address must be formated as: [email protected]
example: [email protected]
Available format:
- ##########
- ###-###-####
- ###.###.####
- (###) ###-####
- (###)###-####
- +###########
- ###-#######
When specifying an address all fields are mandatory except in cases when an address already exists on a profile and it is only being modified.