Skip to content
Snippets Groups Projects

Cozy registry

Pilote Usager is linked to a registry to allow a TS to find and connect to a user Pilote app. A service is run every day to send instance information to the registry.

Service Flow summarized

Launch the service locally

  • Switch to Node 16 (using nvm or n)
  • install local remote doctypes (details here), add a folder named org.mps.registry.dev, inside it add a file named request with the following content :
POST https://cozy-registry.poc.self-data.alpha.grandlyon.com/api/pilote
Authorization: Bearer {{secret_token}}
Content-Type: application/json

{{data}}
  • in the database, if it doesn't exist, create a table named secrets/io-cozy-remote-secrets and add a document with the following content :
{
  "_id": "org.mps.registry.dev",
  "token": "pilotecozytoken"
}
  • launch docker-compose up in a first terminal
  • launch yarn build in a second terminal
  • launch yarn run cozy-konnector-dev -m ./manifest.webapp ./build/services/cozyRegistry/pilote.js to execute the service