Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themerdark
pmEndpoint {
    url = "http://localhost:9090/i2b2/services/PMService/getServices"
  }
  
ontEndpoint {
    url = "http://localhost:9090/i2b2/services/OntologyService"
  }

...

Code Block
languagesql
themerdark
$ psql -U postgres i2b2
 
i2b2=# set search_path = i2b2pm;
 
i2b2=# insert into PM_CELL_DATA (cell_id, project_path, name, method_cd, url, can_override, status_cd) values ('CRC', '/SHRINE', 'SHRINE Federated Query', 'REST', 'https://your_shrine_url:6443/shrine/rest/i2b2/', 1, 'A');

This should result in something that looks like this:

...