@kirschbaum-development/sst-laravel 0.1.2 → 0.1.4
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/Dockerfile.web +1 -1
- package/README.md +10 -1
- package/dist/bin/cli.js +12 -695
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/commands/deploy.d.ts +2 -0
- package/dist/bin/commands/deploy.js +32 -0
- package/dist/bin/commands/deploy.js.map +1 -0
- package/dist/bin/commands/github-iam.d.ts +2 -0
- package/dist/bin/commands/github-iam.js +100 -0
- package/dist/bin/commands/github-iam.js.map +1 -0
- package/dist/bin/commands/init.d.ts +2 -0
- package/dist/bin/commands/init.js +123 -0
- package/dist/bin/commands/init.js.map +1 -0
- package/dist/bin/commands/install.d.ts +2 -0
- package/dist/bin/commands/install.js +86 -0
- package/dist/bin/commands/install.js.map +1 -0
- package/dist/bin/commands/logs.d.ts +2 -0
- package/dist/bin/commands/logs.js +70 -0
- package/dist/bin/commands/logs.js.map +1 -0
- package/dist/bin/commands/ssh.d.ts +2 -0
- package/dist/bin/commands/ssh.js +46 -0
- package/dist/bin/commands/ssh.js.map +1 -0
- package/dist/bin/utils/ecs.d.ts +7 -0
- package/dist/bin/utils/ecs.js +108 -0
- package/dist/bin/utils/ecs.js.map +1 -0
- package/dist/bin/utils/git.d.ts +1 -0
- package/dist/bin/utils/git.js +19 -0
- package/dist/bin/utils/git.js.map +1 -0
- package/dist/bin/utils/iam.d.ts +4 -0
- package/dist/bin/utils/iam.js +60 -0
- package/dist/bin/utils/iam.js.map +1 -0
- package/dist/bin/utils/sst-config.d.ts +5 -0
- package/dist/bin/utils/sst-config.js +74 -0
- package/dist/bin/utils/sst-config.js.map +1 -0
- package/package.json +3 -2
package/Dockerfile.web
CHANGED
package/README.md
CHANGED
|
@@ -314,7 +314,7 @@ This will show the logs for your application in real-time.
|
|
|
314
314
|
|
|
315
315
|
To send logs to AWS CloudWatch, you need to set the `LOG_CHANNEL` environment variable to `stderr`. In case this variable is not set in your specified environment file, SST Laravel will automatically add it to the environment file with the value of `stderr`.
|
|
316
316
|
|
|
317
|
-
##
|
|
317
|
+
## Troubleshooting
|
|
318
318
|
|
|
319
319
|
**APP_URL**
|
|
320
320
|
|
|
@@ -336,6 +336,15 @@ SST Laravel puts the container behind a load balancer, so you must configure you
|
|
|
336
336
|
})
|
|
337
337
|
```
|
|
338
338
|
|
|
339
|
+
**Failed to build sst.config.ts**
|
|
340
|
+
|
|
341
|
+
In case you get the following error when running SST commands, run `npx sst-laravel install`. If this fails, temporarily rename the `sst.config.ts` file, and run `npx sst install`.
|
|
342
|
+
|
|
343
|
+
```bash
|
|
344
|
+
✕ Failed to build sst.config.ts
|
|
345
|
+
- node_modules/@kirschbaum-development/sst-laravel/laravel-sst.ts:6:26 Could not resolve "../../../.sst/platform/src/components/component.js"
|
|
346
|
+
```
|
|
347
|
+
|
|
339
348
|
***
|
|
340
349
|
|
|
341
350
|
### Roadmap
|