Skip to content

Instantly share code, notes, and snippets.

@markhealey
Created March 11, 2013 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markhealey/5135528 to your computer and use it in GitHub Desktop.
Save markhealey/5135528 to your computer and use it in GitHub Desktop.
AppConfig for testing #41
//define AppConfigs
var _appConfigs = [{
appId: "com_your_app_id",
description: "F2 app description",
name: "F2 App",
manifestUrl: "../Basic-F2-App-Template/manifest.js" //note the path to your manifest!
},
{
appId: "com_your_app_id",
description: "F2 app description",
name: "F2 App",
manifestUrl: "./manifest.js" //note the path to your manifest!
},
{
appId: "com_your_app_id",
description: "F2 app description",
name: "F2 App",
manifestUrl: "http://localhost/f2/Basic-F2-App-Template/manifest.js" //note the path to your manifest!
},
{
appId: "com_openf2_examples_csharp_helloworld",
manifestUrl: "https://developer.openf2.org/Examples/apps",//this is definitely not localhost
name: "Hello World"
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment