-
Re: jive-sdk build does not create the extension without any error
gopi.gorantala Apr 6, 2017 12:55 PM (in response to jgoldhammer)1 person found this helpfulI am not sure if I understood your question..
If you are contributing towards jive-sdk, I am afraid I don't have a clue. But if you are developing a custom add-ons then you have to add the following in your jiveclientconfiguration.json file
{
"clientUrl": "http://localhost",
"port": "8090",
"development" : true,
"logLevel": "DEBUG",
"logFile" : "logs/jive-sdk.log",
"logFileSize" : 20480,
"logFileNumBackups" : 10,
"suppressHttpLogging": false,
"ignoreExtensionRegistrationSource" : true,
"suppressAddonRegistration" : true,
"register_url": "%serviceURL%/jive/oauth/register",
"unregister_url": "%serviceURL%/jive/oauth/unregister"
}
-
Re: jive-sdk build does not create the extension without any error
jgoldhammer Apr 6, 2017 1:02 PM (in response to gopi.gorantala)Thanks for your answer.
I have this configuration- the pain point is that there must be an mistake in the config file, because jive-sdk cannot build the addon, but it does not say me why...
Thanks
Jens
-
Re: jive-sdk build does not create the extension without any error
Ryan Rutan May 31, 2017 8:57 AM (in response to jgoldhammer)1 person found this helpfulSo yes...I've run into this before, and yes this is basically a JSON parse error that shuts everything down in the promise chain.
What I've done in the past is install jslint on my IDE and if that happens...swapping over to the editor I can see where the error is in the jiveclientconfiguration.json.
This is feedback that we should look at adding to the SDK and has been noted. Can you post an issue to the project?
-
-