@jin7942/ray
Version:
Lightweight CI/CD deployment tool powered by Docker and Git
13 lines (12 loc) • 544 B
TypeScript
/**
* RAY CI/CD Automation Library Entry
*
* This module provides both full pipeline execution
* and individual step functions for custom usage.
*/
export { runRayPipeline, runAllPipelines } from './main';
export { createContext } from './core/contextBuilder';
export { gitCloneRepo, dockerBuildImage, dockerDeployContainer } from './core';
export { loadAllProjects, loadProjectConfig } from './config/configLoader';
export type { Config, ConfigFile } from '../src/_types/config';
export type { StepContext } from '../src/_types/context';