Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

The users configuration directory contains a separate directories for each User configured in Iguana X:

<instance directory>/configurations/users/<USERNAME>

Within each distinct User’s directory, there will be multiple files containing User specific configurations:

 user.config contains the username, password and tags (assigned roles #tags)

user.config contains the username, password and the assigned Roles #tags. All passwords are encrypted. The file will look something like:

{
    "password": "WCVHQOptRwBoC7lg9EVwSiQ7kzTU4Qd0VlU02m769JG6qSD03w7EcWFnfn2n4gxmE764EA39F1C0B80B50F0C5488222828023525393DFFDE77EAD72B2BF579E0B01615CD03E7EFE05D2027690FCD43275DC2917FD0A050378F7055216738B1BBA40",
    "tags": [
        "#admin"
    ],
    "username": "admin"
}
 filters.json contains the user specific Dashboard Filter Tags

Each User can configure unique quick Filter Tags on their Iguana X Dashboard. These filter tags are stored in the filters.json file. For example:

["#demo","#hl7","#fhir","#training"]
 Git configuration files required to interact with the git host service are stored in each User directory

Each user directory will be named according to the configured user. For example, every Iguana instance will have an admin directory containing the admin information required to interact with the configured Git host service.

  • git.json - Iguana generates this configuration file to store your selected Git service, username, and token so that Iguana can create repositories within your Git service.

{
    "service": "Bitbucket",
    "token": "628908105F9SFSF8982F5CF4AEA30F2909A9A1B2F8F99CA66C4FA",
    "username": "j_john"
}
  • owners.json - Iguana stores the group of repositories you have access to within your Git Service. For example, your Bitbucket workspaces.

[
    "j_john",
    "interfaceware"
]
  • gitconfig - Iguana stores the ssh command and Author Info used to label commits, authenticate and interact with your Git repositories from the Translator.

[core]
	sshCommand = ssh -i /Users/jjohn/Library/IguanaX/configurations/users/admin/privatekey
[user]
	email = john@gmail.com
	name = John
  • SSH Key pairs - Iguana generates and writes your privatekey and privatekey.pub files used to authenticate with your git service in the Translator.

  • No labels