Skip to content

Commit b2efeec

Browse files
committed
Integrate deployment automation with UnityGrid Code Creator
1 parent b484856 commit b2efeec

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

aios-integration.js

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
// Implement the integration of UnityGrid Code Creator into the UnityGrid AIOS
1+
2+
// Integrate deployment automation with Code Creator
3+
import { deployUnityGridAIOS } from '../unitygrid-aios-click-deploy/deploy';
4+
5+
class UnityGridCodeCreatorIntegration {
6+
constructor() {
7+
this.codeCreator = new UnityGridCodeCreator();
8+
}
9+
10+
generateAndDeployCode() {
11+
// Generate code using the UnityGrid Code Creator
12+
const generatedCode = this.codeCreator.generateCode();
13+
14+
// Deploy the generated code to the AIOS infrastructure
15+
deployUnityGridAIOS(generatedCode);
16+
}
17+
}
18+
19+
// Expose the integration class for use in the AIOS
20+
export default UnityGridCodeCreatorIntegration;

0 commit comments

Comments
 (0)