@turboops/cli 1.0.91-dev.1465 → 1.0.91-dev.1471
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/dist/index.js +458 -685
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,6 +34,7 @@ turbo logout
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
# Initialize project in current directory
|
|
37
|
+
# Prompts for stage selection (dev, test, preview, prod)
|
|
37
38
|
turbo init
|
|
38
39
|
|
|
39
40
|
# Show current configuration
|
|
@@ -106,6 +107,24 @@ turbo deploy production --timeout 900000
|
|
|
106
107
|
|
|
107
108
|
**Note:** This command requires a Project Token with `deploy` permission. Set the token via `TURBOOPS_TOKEN` environment variable or `--token` flag.
|
|
108
109
|
|
|
110
|
+
### Docker Setup
|
|
111
|
+
|
|
112
|
+
Generate Docker configuration (docker-compose.yml, Dockerfiles, .dockerignore) using AI.
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
# Generate Docker setup interactively
|
|
116
|
+
turbo docker generate
|
|
117
|
+
|
|
118
|
+
# Force overwrite existing Docker files
|
|
119
|
+
turbo docker generate --force
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
**Options for `docker generate`:**
|
|
123
|
+
|
|
124
|
+
| Option | Description |
|
|
125
|
+
| ------------- | ------------------------------- |
|
|
126
|
+
| `-f, --force` | Overwrite existing Docker files |
|
|
127
|
+
|
|
109
128
|
### Pipeline Management
|
|
110
129
|
|
|
111
130
|
Generate and manage CI/CD pipeline configurations.
|