fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-06 18:30:39 +01:00
parent 277c2d8dbd
commit f9f10efe6f
3 changed files with 17 additions and 1 deletions

View File

@ -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'
}

15
ts/data/cloudlyconfig.ts Normal file
View File

@ -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';
}

View File

@ -1,3 +1,4 @@
export * from './cloudlyconfig.js';
export * from './cluster.js';
export * from './config.js';
export * from './docker.js';