We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b484856 commit b2efeecCopy full SHA for b2efeec
1 file changed
aios-integration.js
@@ -1 +1,20 @@
1
-// Implement the integration of UnityGrid Code Creator into the UnityGrid AIOS
+
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