Found 73 results for "application-server usage getting-started"

The search executed in 0.001252811 seconds. That's fast.

Gitana / 4.0 / Forms / API / Usage

Usage Alpaca is packaged up as a function that you call to render a form on top of a DOM element. The function takes in the target DOM element and a configuration block. It then figures out the schema, options and layout information that is needed and sets about compiling any dynamic templates and assembling any views needed to make things work. And then it renders, executing templates and committing DOM elements to the target. It wires everything up and then fires the postRender callback. At va

Score: 9.462924

Gitana / 3.2 / Guide / Guide / Scripting / Association

Association Properties Name Type Description branch branch The Branch on which this Association resides. branchId string The ID of the branch that this Association resides on. changesetId string The changeset ID on which this node resides. If the node has not yet been saved, this may be null. description string The Description of this document. directionality string The directionality of the association - either DIRECTED or UNDIRECTED. id string The ID of this document. properties object The pro

Score: 2.7361252

Association

Association Properties Name Type Description branch branch The Branch on which this Association resides. branchId string The ID of the branch that this Association resides on. changesetId string The changeset ID on which this node resides. If the node has not yet been saved, this may be null. description string The Description of this document. directionality string The directionality of the association - either DIRECTED or UNDIRECTED. id string The ID of this document. properties object The pro

Score: 2.7361252

Gitana / 3.2 / Guide / Guide / Docker / Maintenance / Health Check / Load Balancers

Health Check / Load Balancers In a production configuration of Cloud CMS, you will want to have a load balancer (LB) in front of both your API and UI clusters. You should have one load balancer for the API cluster and one load balancer for the UI cluster. Each load balancer is responsible for receiving requests from the outside world and efficiently distributing those requests to the N servers that make up each cluster. Load balancers use a number of strategies to try to determine which servers

Score: 2.7304647

Gitana / 4.0 / Self Managed / Maintenance / Health Check / Load Balancers

Health Check / Load Balancers In a production configuration of Cloud CMS, you will want to have a load balancer (LB) in front of both your API and UI clusters. You should have one load balancer for the API cluster and one load balancer for the UI cluster. Each load balancer is responsible for receiving requests from the outside world and efficiently distributing those requests to the N servers that make up each cluster. Load balancers use a number of strategies to try to determine which servers

Score: 2.7304647

Gitana / 3.2 / Guide / Guide / Command Line

Command Line The Cloud CMS command-line client gives developers a way to work with their Cloud CMS tenant projects, applications, data stores and other resources from the command line. The CLI (command-line client) is a Node.js based command line tool that is very easy to use and available at no charge. Note: A valid Cloud CMS subscription is required to connect to Cloud CMS with the command-line client. This subscription can be a paid subscription or a free trial account. Getting Started To get

Score: 2.7286067

Gitana / 4.0 / Developers / Command Line Interface / Overview

Command Line The Cloud CMS command-line client gives developers a way to work with their Cloud CMS tenant projects, applications, data stores and other resources from the command line. The CLI (command-line client) is a Node.js based command line tool that is very easy to use and available at no charge. Note: A valid Cloud CMS subscription is required to connect to Cloud CMS with the command-line client. This subscription can be a paid subscription or a free trial account. Getting Started To get

Score: 2.7286067

Gitana / 3.2 / Guide / Guide / Scripting / Node

Node Provides scripting facilities around a Node. Properties Name Type Description associations resultmap All of the associations around a node. attachments object The attachments for the node branch branch The Branch on which this Association resides. branchId string The ID of the branch that this Association resides on. changesetId string The changeset ID on which this node resides. If the node has not yet been saved, this may be null. childAssociations resultmap All of the child associations

Score: 2.6872668

Node

Node Provides scripting facilities around a Node. Properties Name Type Description associations resultmap All of the associations around a node. attachments object The attachments for the node branch branch The Branch on which this Association resides. branchId string The ID of the branch that this Association resides on. changesetId string The changeset ID on which this node resides. If the node has not yet been saved, this may be null. childAssociations resultmap All of the child associations

Score: 2.6872668

Gitana / 3.2 / Guide / Guide / Scripting / Logger

Logger Properties There are no properties for this class. Methods debug Usage void debug() Arguments None Return Type Description void Examples Hello World This message will be logged to both the tenant log and the system log at the INFO level. logger.debug("Hello World!"); error Usage void error() Arguments None Return Type Description void Examples Hello World This message will be logged to both the tenant log and the system log at the INFO level. logger.error("Hello World!"); info Usage voi

Score: 2.6641045

Logger

Logger Properties There are no properties for this class. Methods debug Usage void debug() Arguments None Return Type Description void Examples Hello World This message will be logged to both the tenant log and the system log at the INFO level. logger.debug("Hello World!"); error Usage void error() Arguments None Return Type Description void Examples Hello World This message will be logged to both the tenant log and the system log at the INFO level. logger.error("Hello World!"); info Usage voi

Score: 2.6641045

Gitana / 4.0 / Forms / API / Functions

Functions General Usage The general usage of Alpaca is one where you pass a JSON object into the $.alpaca method to inspire the rendering of your form. The general usage follows a structure like this: $("#id").alpaca({ "data": {}, "schema": {}, "options": {}, "postRender": function(control) { } }); This will use the information provided by schema and options to render a form containing data into the DOM element with ID id. Once the form has finished rendering, the postRender

Score: 2.4420924

Gitana / 4.0 / Forms / API / Overview

API Further Reading Callbacks Conditional Dependencies Connectors Cookbook Custom Fields Data Sources Dependencies Events Forms Functions Internationalization Layouts Lookups Observables Ordering Recursive References References Serialization Templates Usage Validation Views Wizards

Score: 2.298506

Gitana / 3.2 / Guide / Guide / Scripting / Actions

Actions Properties There are no properties for this class. Methods execute Usage object execute() Arguments None Return Type Description object Examples Change the type of a Node In this example, we fire off the changeType action to change the type of a node to custom:thing. actions.execute("changeType", { "node": node, "type": "custom:thing" });

Score: 2.2284732

Actions

Actions Properties There are no properties for this class. Methods execute Usage object execute() Arguments None Return Type Description object Examples Change the type of a Node In this example, we fire off the changeType action to change the type of a node to custom:thing. actions.execute("changeType", { "node": node, "type": "custom:thing" });

Score: 2.2284732

Gitana / 3.2 / Guide / Guide / Application Server / Authentication / Adapters / Session

Session The session adapter checks the session to find user profile information. Configuration Here are all of the properties that may be configured: { "adapters": { "{adapterId}": { "type": "session" } } } The value {adapterId} can be any unique ID across the adapters. This is the ID that you reference from within your strategy configuration. Usage To grab authenticated user profile from the session, you might do: { "adapters": { "{adapterId}": {

Score: 2.1903377

Gitana / 4.0 / Developers / Application Server / Authentication / Adapters / Session

Session The session adapter checks the session to find user profile information. Configuration Here are all of the properties that may be configured: { "adapters": { "{adapterId}": { "type": "session" } } } The value {adapterId} can be any unique ID across the adapters. This is the ID that you reference from within your strategy configuration. Usage To grab authenticated user profile from the session, you might do: { "adapters": { "{adapterId}": {

Score: 2.1903377

Cloud CMS Architecture

Cloud CMS has two clusters that we run for customers who host apps with us. One cluster is for the "app server" tier (*.cloudcms.net) and the other is the "API" tier (api.cloudcms.com). The app server cluster consists of Node.js servers, and the API is a Java-backend that is stateless and implements the full REST API: As such, the API doesn't manage connections directly. Any invocation to it is a one-shot where each request contains everything needed to assert the user's identity and proceed wit

Score: 2.1826382

Gitana / 3.2 / Guide / Guide / Scripting / DataStore

DataStore Properties Name Type Description description string The Description of this document. id string The ID of this document. properties object The properties for this document. title string The Title of this document. Methods stringify Usage string stringify() Arguments None Return Type Description string Examples In this code sample, we take the JSON for the given document and produce a string representation of it. var text = document.stringify(true);

Score: 2.1779141

Gitana / 3.2 / Guide / Guide / Scripting / Document

Document Properties Name Type Description description string The Description of this document. id string The ID of this document. properties object The properties for this document. title string The Title of this document. Methods stringify Usage string stringify() Arguments None Return Type Description string Examples In this code sample, we take the JSON for the given document and produce a string representation of it. var text = document.stringify(true);

Score: 2.1779141

DataStore

DataStore Properties Name Type Description description string The Description of this document. id string The ID of this document. properties object The properties for this document. title string The Title of this document. Methods stringify Usage string stringify() Arguments None Return Type Description string Examples In this code sample, we take the JSON for the given document and produce a string representation of it. var text = document.stringify(true);

Score: 2.1779141

Document

Document Properties Name Type Description description string The Description of this document. id string The ID of this document. properties object The properties for this document. title string The Title of this document. Methods stringify Usage string stringify() Arguments None Return Type Description string Examples In this code sample, we take the JSON for the given document and produce a string representation of it. var text = document.stringify(true);

Score: 2.1779141

Gitana / 3.2 / Guide / Guide / Scripting / Group

Group Properties Name Type Description description string The Description of this document. id string The ID of this document. name string The name of this principal. properties object The properties for this document. title string The Title of this document. Methods stringify Usage string stringify() Arguments None Return Type Description string Examples In this code sample, we take the JSON for the given document and produce a string representation of it. var text = document.stringify(true);

Score: 2.1534855

Gitana / 3.2 / Guide / Guide / Scripting / Principal

Principal Properties Name Type Description description string The Description of this document. id string The ID of this document. name string The name of this principal. properties object The properties for this document. title string The Title of this document. Methods stringify Usage string stringify() Arguments None Return Type Description string Examples In this code sample, we take the JSON for the given document and produce a string representation of it. var text = document.stringify(true

Score: 2.1534855

Group

Group Properties Name Type Description description string The Description of this document. id string The ID of this document. name string The name of this principal. properties object The properties for this document. title string The Title of this document. Methods stringify Usage string stringify() Arguments None Return Type Description string Examples In this code sample, we take the JSON for the given document and produce a string representation of it. var text = document.stringify(true);

Score: 2.1534855