How to use the jovo-framework.config function in jovo-framework

To help you get started, we’ve selected a few jovo-framework examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jovotech / jovo-framework / examples / javascript / 02_googleassistant / multisurface-conversations / src / config.js View on Github external
// ------------------------------------------------------------------
// APP CONFIGURATION
// ------------------------------------------------------------------

const { config } = require('jovo-framework');

module.exports = config({
	logging: true,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	},

	db: {
		FileDb: {
			pathToFile: '../db/db.json'
		}
	}
});
github jovotech / jovo-framework / examples / javascript / i18n / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	}
});
github jovotech / jovo-framework / examples / javascript / 01_alexa / dynamic-entities / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	}
});
github jovotech / jovo-framework / examples / javascript / 02_googleassistant / interactive-canvas / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	}
});
github jovotech / jovo-framework / examples / javascript / google-sheets-cms / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	},
	db: {
		FileDb: {
			pathToFile: '.././db/db.json'
		}
	},

	cms: {
		GoogleSheetsCMS: {
			spreadsheetId: '1adMWErUl7xrtmKCBiMjEJCfkWWHgmxASId5eeRRVBSc',
			access: 'private',
			credentialsFile: './credentials.json',
github jovotech / jovo-framework / examples / javascript / hello-world / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,
	intentMap: {
		'AMAZON.HelpIntent': 'HelpIntent'
	},
	db: {
		FileDb: {
			pathToFile: './../db/db.json'
		}
	},
	plugin: {
		GoogleAssistant: {}
	}
});
github jovotech / jovo-framework / examples / javascript / validation / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: false,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	},
	db: {
		FileDb: {
			pathToFile: './../../db/db.json'
		}
	}
});
github jovotech / jovo-framework / examples / javascript / session-attributes / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	}
});
github jovotech / jovo-framework / examples / javascript / speechbuilder / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,

	intentMap: {
		'AMAZON.StopIntent': 'END'
	}
});
github jovotech / jovo-framework / examples / javascript / data / src / config.js View on Github external
const { config } = require('jovo-framework');

module.exports = config({
	logging: true,
	db: {
		FileDb: {
			pathToFile: './db/db.json'
		}
	}
});

jovo-framework

[![Jovo Framework](https://github.com/jovotech/jovo-framework/raw/master/docs/img/jovo-header.jpg)](https://v3.jovo.tech)

Apache-2.0
Latest version published 2 years ago

Package Health Score

58 / 100
Full package analysis

Similar packages