create-asaje-go-vue 0.3.8 → 0.3.10
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 +3 -0
- package/bin/create-asaje-go-vue.js +387 -2877
- package/package.json +5 -3
- package/src/cli/args.js +454 -0
- package/src/cli/env.js +57 -0
- package/src/cli/invocation.js +53 -0
- package/src/cli/paths.js +19 -0
- package/src/cli/process.js +56 -0
- package/src/cli/prompts.js +49 -0
- package/src/cli/runner.js +59 -0
- package/src/cli/strings.js +53 -0
- package/src/create/answers.js +94 -0
- package/src/create/questions.js +356 -0
- package/src/project/docs.js +285 -0
- package/src/project/files.js +91 -0
- package/src/project/makefile.js +205 -0
- package/src/project/sync.js +164 -0
- package/src/railway/client.js +74 -0
- package/src/railway/manifest.js +30 -0
- package/src/railway/services.js +294 -0
- package/src/railway/snapshot.js +113 -0
- package/src/railway/variables.js +123 -0
- package/src/start/answers.js +132 -0
- package/src/start/runtime.js +92 -0
package/README.md
CHANGED
|
@@ -124,6 +124,7 @@ npx -p create-asaje-go-vue@latest asaje print-railway-config ./my-app
|
|
|
124
124
|
npx -p create-asaje-go-vue@latest asaje print-railway-config ./my-app --environment production
|
|
125
125
|
npx -p create-asaje-go-vue@latest asaje print-railway-config ./my-app --environment production --json
|
|
126
126
|
npx -p create-asaje-go-vue@latest asaje print-railway-config ./my-app --environment production --show-secrets
|
|
127
|
+
npx -p create-asaje-go-vue@latest asaje print-railway-config ./my-app --write-config
|
|
127
128
|
```
|
|
128
129
|
|
|
129
130
|
### Export resolved Railway config snapshot
|
|
@@ -259,6 +260,8 @@ npx -p create-asaje-go-vue@latest asaje destroy-railway ./my-app --scope project
|
|
|
259
260
|
- supports `--json` for machine-readable output
|
|
260
261
|
- redacts secret-looking values in the printed output by default
|
|
261
262
|
- supports `--show-secrets` when you explicitly want the raw values in the output
|
|
263
|
+
- supports `--write-config` to write the resolved per-service variables back into `asaje.config.json` for later adjustment
|
|
264
|
+
- when `--write-config` is used without `--show-secrets`, sensitive-looking variables are omitted from the file to avoid writing redacted placeholders
|
|
262
265
|
|
|
263
266
|
## What `asaje export-railway-config` does
|
|
264
267
|
|