Skip to content
Snippets Groups Projects
config.ts 379 B
Newer Older
export const port = env.PORT ?? 8000;

export const keys = {
    private: '/etc/ssl/localcerts/cert.key',
    public: '/etc/ssl/localcerts/cert.pem',
};

export const allowedOrigins = [ "*" ];
export const environment = (env.NODE_ENV ?? 'development') as ('development' | 'staging' | 'production');
export const web_serve = '../client/build/'