diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 65fc133..671828d 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/interfaces', - version: '1.0.24', + version: '1.0.25', description: 'interfaces for working with containers' } diff --git a/ts/data/cloudlyconfig.ts b/ts/data/cloudlyconfig.ts new file mode 100644 index 0000000..149d6d6 --- /dev/null +++ b/ts/data/cloudlyconfig.ts @@ -0,0 +1,15 @@ +import * as plugins from '../plugins.js'; + +export interface ICloudlyConfig { + cfToken?: string; + digitalOceanToken?: string; + environment?: 'production' | 'integration'; + gitlabUser?: string; + gitlabToken?: string; + letsEncryptEmail?: string; + letsEncryptPrivateKey?: string; + mongoDescriptor?: plugins.tsclass.database.IMongoDescriptor; + publicUrl?: string; + publicPort?: string; + sslMode?: 'none' | 'letsencrypt' | 'external'; +} \ No newline at end of file diff --git a/ts/data/index.ts b/ts/data/index.ts index 2245d52..abf1125 100644 --- a/ts/data/index.ts +++ b/ts/data/index.ts @@ -1,3 +1,4 @@ +export * from './cloudlyconfig.js'; export * from './cluster.js'; export * from './config.js'; export * from './docker.js';