8295bd6882
this shall be a progressive process
18 lines
439 B
JavaScript
18 lines
439 B
JavaScript
'use strict';
|
|
|
|
const Data = require('./lib/data');
|
|
const Examples = require('./lib/models/examples');
|
|
|
|
const data = new Data();
|
|
|
|
data.connect(() => {
|
|
data.createDeployment(Examples.deployment).then((deployment) => {
|
|
data.createManifest(deployment.id, Examples.manifest).then((manifest) => {
|
|
console.log('deployment with manifest created');
|
|
process.exit(0);
|
|
});
|
|
}).catch((err) => {
|
|
console.error(err);
|
|
});
|
|
});
|