-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflow_config.json
More file actions
82 lines (82 loc) · 1.9 KB
/
workflow_config.json
File metadata and controls
82 lines (82 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"workflow": {
"name": "Design to Deployment",
"description": "Transform design files into deployed applications",
"version": "1.0.0"
},
"steps": [
{
"name": "design_import",
"tool": "design_importer.py",
"enabled": true,
"params": {
"source": "designs/figma",
"output_dir": "designs/imported"
}
},
{
"name": "design_analysis",
"tool": "design_analyzer.py",
"enabled": true,
"params": {
"input_dir": "designs/imported",
"output_dir": "designs/analyzed"
}
},
{
"name": "component_generation",
"tool": "component_generator.py",
"enabled": true,
"params": {
"input_dir": "designs/analyzed",
"output_dir": "src/components",
"framework": "react"
}
},
{
"name": "integration",
"tool": "integration_generator.py",
"enabled": true,
"params": {
"components_dir": "src/components",
"screens_dir": "designs/analyzed/screens",
"output_dir": "src/pages"
}
},
{
"name": "visual_validation",
"tool": "visual_validator.py",
"enabled": true,
"params": {
"design_dir": "designs/imported",
"implementation_url": "http://localhost:3000",
"output_dir": "validation/visual"
}
},
{
"name": "deployment_preparation",
"tool": "deployment_prep.py",
"enabled": true,
"params": {
"env": "production",
"build_dir": "build"
}
},
{
"name": "deployment",
"tool": "deployment_automation.py",
"enabled": true,
"params": {
"target": "vercel",
"env": "production",
"build_dir": "build"
}
}
],
"settings": {
"continue_on_error": false,
"parallel_execution": false,
"notification_email": "user@example.com",
"save_artifacts": true
}
}