Cinegy Workspace Installation

Cinegy Workspace 11 consists of pure static content and can be therefore installed easily on any Web server. To install Cinegy Workspace 11, first download the Beta archive from the partner portal and extract its content into a folder that can be served by a Web server of your choice. If you are using IIS, the dedicated folder is: C:\inetpub\wwwroot\workspace_root

Note
Please note that subfolder name doesn’t have to be workspace_root, it can be any arbitrary name.

After the installation is completed, Cinegy Workspace has to be configured. Navigate to C:\inetpub\wwwroot\workspace_root\assets\configuration and open config.json file.

The two important sections are mams and domains.

The mams section contains a configuration list for connecting one or several Cinegy Archive databases, while domains is a list of one or several Windows Domains (or local Windows Workgroups) which will be used to authenticate Cinegy Workspace users.

For example, you have Cinegy Archive Service, Cinegy Media Asset Management Service, and Cinegy Image Service installed locally on your computer. You have two Cinegy Archive Databases "Cinegy_db_main" and "Cinegy_db_slave" located on "SQL_Server" within "MyDomain". The configuration file will be as follows:

{
    "mams":
    [
        {
            "name": "Cinegy Main Database",
            "casEndpoint": "http://localhost:8082/ICinegyDataAccessService",
            "mamEndpoint": "http://localhost:7601/mams/1.0/api/mam/",
            "dbName": "Cinegy_db_main",
            "dbServer": "SQL_Server",
            "thumbnailServer": "http://localhost:8001/image_service/1.0/api/thumbnail/"
        },
        {
            "name": "Cinegy Slave Database",
            "casEndpoint": "http://localhost:8082/ICinegyDataAccessService",
            "mamEndpoint": "http://localhost:7601/mams/1.0/api/mam/",
            "dbName": "Cinegy_db_slave",
            "dbServer": "SQL_Server",
            "thumbnailServer": "http://localhost:8001/image_service/1.0/api/thumbnail/"
        }
    ],
    "domains":
    [
        "MyDomain"
    ],
    "itemsPerPage": 10,
    "useRemoteConfig": false,
    "remoteConfigHost":"remote_config_host_url"
}