@cruxgarden/cli 0.0.4 → 0.0.5
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 +2 -6
- package/docker/docker-compose.nursery.yml +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<img src=".github/banner.jpg" alt="Crux Garden - Where Ideas Grow" width="100%">
|
|
3
|
-
<p>
|
|
4
|
-
<a href="https://github.com/CruxGarden/cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License"></a>
|
|
5
|
-
<a href="https://github.com/CruxGarden/cli/issues"><img src="https://img.shields.io/github/issues/CruxGarden/cli" alt="Issues"></a>
|
|
6
|
-
<a href="https://github.com/CruxGarden/cli/stargazers"><img src="https://img.shields.io/github/stars/CruxGarden/cli" alt="Stars"></a>
|
|
7
|
-
</p>
|
|
8
3
|
</div>
|
|
9
4
|
|
|
10
5
|
The Crux Garden CLI tool helps manage the Crux Garden Nursery environment with Docker.
|
|
@@ -238,7 +233,8 @@ JWT_SECRET=your-super-secret-jwt-key-min-32-chars
|
|
|
238
233
|
AWS_ACCESS_KEY_ID=your-key
|
|
239
234
|
AWS_SECRET_ACCESS_KEY=your-secret
|
|
240
235
|
AWS_REGION=us-east-1
|
|
241
|
-
|
|
236
|
+
AWS_SES_FROM_EMAIL=demo@example.com
|
|
237
|
+
AWS_S3_ATTACHMENTS_BUCKET=crux-garden-attachments
|
|
242
238
|
|
|
243
239
|
# Optional overrides
|
|
244
240
|
CORS_ORIGIN=*
|
|
@@ -82,7 +82,8 @@ services:
|
|
|
82
82
|
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID:-dummy}
|
|
83
83
|
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY:-dummy}
|
|
84
84
|
AWS_REGION: ${AWS_REGION:-us-east-1}
|
|
85
|
-
|
|
85
|
+
AWS_SES_FROM_EMAIL: ${AWS_SES_FROM_EMAIL:-noreply@example.com}
|
|
86
|
+
AWS_S3_ATTACHMENTS_BUCKET: ${AWS_S3_ATTACHMENTS_BUCKET:-crux-garden-attachments}
|
|
86
87
|
|
|
87
88
|
# Optional Configuration
|
|
88
89
|
CORS_ORIGIN: ${CORS_ORIGIN:-*}
|