@candlerip/shared-devops 0.0.31 → 0.0.32

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/.env ADDED
@@ -0,0 +1,15 @@
1
+ AWS_REGION=eu-central-1
2
+ AWS_S3_IMAGES_BUCKET_NAME=images.development.candlerip.com
3
+ APP_PORT=5000
4
+ AUTH0_BASE_URL=http://localhost:5000
5
+ AUTH0_CLIENT_ID=eYKLeReXC8Uk94vWpmCUNP8bqrkas4b9
6
+ AUTH0_CLIENT_SECRET=2I-H-lo6hp7WZGGTArGrjfx6-nZ-4MB12fvOA0IXmkUWWM6LvATGKe59dM3Juqrq
7
+ AUTH0_ISSUER_BASE_URL=https://candlerip-development.eu.auth0.com
8
+ AUTH0_SECRET=364e19b6ce657d7a1272bb3d2ce660c9cb32a3100eaa5da84ad57b80c65e1979
9
+ BACKEND_URL=http://localhost:5000/api
10
+ CACHE_ENABLED=true
11
+ DATABASE_URL=mongodb+srv://candlerip:CandleRip_2023@cluster.g17bc5o.mongodb.net/development
12
+ GOOGLE_MAPS_API_KEY=AIzaSyAHpvgZ6oG1gO5vB0ijMcw9-wnfgaUUyA0
13
+ RABBITMQ_URL=amqp://rabbitmq_user:rabbitmq_pwd@rabbitmq:5672
14
+ REDIS_PWD=redis_pwd
15
+ REDIS_URL_APP=redis://localhost:6379
@@ -26,4 +26,4 @@ else
26
26
  FILENAME=".env"
27
27
  fi
28
28
 
29
- printf "%s" "${ENVS[@]}" > $FILENAME
29
+ printf "%s\n" "${ENVS[@]}" > $FILENAME
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared-devops",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "crsd-create-env-file": "./environment/create-env-file.sh",