@beeblock/svelar 0.6.2 → 0.6.3
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 +10 -3
- package/dist/cli/bin.js +329 -110
- package/dist/cli/commands/DeployTemplates.d.ts +14 -0
- package/dist/cli/commands/DevDownCommand.d.ts +14 -0
- package/dist/cli/commands/DevLogsCommand.d.ts +14 -0
- package/dist/cli/commands/DevRestartCommand.d.ts +14 -0
- package/dist/cli/commands/DevUpCommand.d.ts +14 -0
- package/dist/cli/commands/DockerComposeCommand.d.ts +11 -0
- package/dist/cli/commands/MakeCiCommand.d.ts +27 -0
- package/dist/cli/commands/MakeDeployCommand.d.ts +26 -0
- package/dist/cli/commands/MakeDockerCommand.d.ts +8 -2
- package/dist/cli/commands/MakeInfraCommand.d.ts +17 -0
- package/dist/cli/commands/ProdDeployCommand.d.ts +14 -0
- package/dist/cli/commands/ProdDownCommand.d.ts +14 -0
- package/dist/cli/commands/ProdLogsCommand.d.ts +14 -0
- package/dist/cli/commands/ProdRestartCommand.d.ts +14 -0
- package/dist/cli/commands/ProdUpCommand.d.ts +14 -0
- package/dist/cli/index.js +305 -86
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -105,12 +105,19 @@ npx svelar migrate # run migrations
|
|
|
105
105
|
npx svelar schedule:run # start the scheduler
|
|
106
106
|
npx svelar queue:work # process queue jobs
|
|
107
107
|
npx svelar tinker # interactive REPL
|
|
108
|
-
npx svelar plugin:list # list discovered plugins
|
|
109
108
|
npx svelar plugin:install @beeblock/svelar-tags # install + publish
|
|
110
|
-
|
|
109
|
+
|
|
110
|
+
# Deployment
|
|
111
|
+
npx svelar make:deploy # scaffold Docker + CI/CD + infra
|
|
112
|
+
npx svelar make:docker # Dockerfile, compose files, health endpoint
|
|
113
|
+
npx svelar make:ci # GitHub Actions workflow
|
|
114
|
+
npx svelar make:infra # droplet setup script + env template
|
|
115
|
+
npx svelar dev:up # start dev containers (hot-reload)
|
|
116
|
+
npx svelar dev:logs # follow dev container logs
|
|
117
|
+
npx svelar prod:deploy # pull latest image + restart prod
|
|
111
118
|
```
|
|
112
119
|
|
|
113
|
-
|
|
120
|
+
53 commands available. Run `npx svelar` to see all commands.
|
|
114
121
|
|
|
115
122
|
## Database Support
|
|
116
123
|
|