How to use the bedrock.config.server function in bedrock

To help you get started, we’ve selected a few bedrock 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 Spec-Ops / credentials-polyfill / tests / config.js View on Github external
/*!
 * Credentials polyfill test configuration.
 *
 * Copyright (c) 2015 The Open Payments Foundation. All rights reserved.
 *
 * @author Omar Malik
 * @author Dave Longley
 */
var config = require('bedrock').config;
var fs = require('fs');
var path = require('path');

config.server.port = 18444;
config.server.httpPort = 18081;
if(config.server.port !== 443) {
  config.server.host += ':' + config.server.port;
}
config.server.baseUri = 'https://' + config.server.host;

// add pseudo bower packages
var rootPath = path.join(__dirname, '..');
config.requirejs.bower.packages.push({
  path: rootPath,
  manifest: JSON.parse(fs.readFileSync(
    path.join(rootPath, 'bower.json'), {encoding: 'utf8'}))
});
config.requirejs.bower.packages.push({
  path: path.join(__dirname, 'components'),
  manifest: {
    name: 'credentials-polyfill-test',
    moduleType: 'amd',
github Spec-Ops / credentials-polyfill / tests / config.js View on Github external
*
 * Copyright (c) 2015 The Open Payments Foundation. All rights reserved.
 *
 * @author Omar Malik
 * @author Dave Longley
 */
var config = require('bedrock').config;
var fs = require('fs');
var path = require('path');

config.server.port = 18444;
config.server.httpPort = 18081;
if(config.server.port !== 443) {
  config.server.host += ':' + config.server.port;
}
config.server.baseUri = 'https://' + config.server.host;

// add pseudo bower packages
var rootPath = path.join(__dirname, '..');
config.requirejs.bower.packages.push({
  path: rootPath,
  manifest: JSON.parse(fs.readFileSync(
    path.join(rootPath, 'bower.json'), {encoding: 'utf8'}))
});
config.requirejs.bower.packages.push({
  path: path.join(__dirname, 'components'),
  manifest: {
    name: 'credentials-polyfill-test',
    moduleType: 'amd',
    main: './main.js',
    dependencies: {
      angular: '~1.3.0'
github Spec-Ops / credentials-polyfill / tests / config.js View on Github external
/*!
 * Credentials polyfill test configuration.
 *
 * Copyright (c) 2015 The Open Payments Foundation. All rights reserved.
 *
 * @author Omar Malik
 * @author Dave Longley
 */
var config = require('bedrock').config;
var fs = require('fs');
var path = require('path');

config.server.port = 18444;
config.server.httpPort = 18081;
if(config.server.port !== 443) {
  config.server.host += ':' + config.server.port;
}
config.server.baseUri = 'https://' + config.server.host;

// add pseudo bower packages
var rootPath = path.join(__dirname, '..');
config.requirejs.bower.packages.push({
  path: rootPath,
  manifest: JSON.parse(fs.readFileSync(
    path.join(rootPath, 'bower.json'), {encoding: 'utf8'}))
});
config.requirejs.bower.packages.push({
  path: path.join(__dirname, 'components'),
  manifest: {
github Spec-Ops / credentials-polyfill / tests / config.js View on Github external
/*!
 * Credentials polyfill test configuration.
 *
 * Copyright (c) 2015 The Open Payments Foundation. All rights reserved.
 *
 * @author Omar Malik
 * @author Dave Longley
 */
var config = require('bedrock').config;
var fs = require('fs');
var path = require('path');

config.server.port = 18444;
config.server.httpPort = 18081;
if(config.server.port !== 443) {
  config.server.host += ':' + config.server.port;
}
config.server.baseUri = 'https://' + config.server.host;

// add pseudo bower packages
var rootPath = path.join(__dirname, '..');
config.requirejs.bower.packages.push({
  path: rootPath,
  manifest: JSON.parse(fs.readFileSync(
    path.join(rootPath, 'bower.json'), {encoding: 'utf8'}))
});
config.requirejs.bower.packages.push({
  path: path.join(__dirname, 'components'),
  manifest: {
    name: 'credentials-polyfill-test',

bedrock

A core foundation for rich Web applications.

Apache-2.0
Latest version published 2 years ago

Package Health Score

53 / 100
Full package analysis