diff --git a/.env b/.env index 400d7f914b127f7536df0c49d53bebdcd6702250..f9d52fe1b2007c9925acbf9a46c553e8ab8201c9 100644 --- a/.env +++ b/.env @@ -5,6 +5,7 @@ DATABASE_PASSWORD=hkaLBM3RVnyYeYeqE3WI1w2e4Avpy0Wd5O3s3 ES_JAVA_OPTS="-Xms512m -Xmx512m" FUSIONAUTH_APP_MEMORY=512M +#minio MINIO_USERNAME=workflow-dev MINIO_PASSWORD=workflow-dev MINIO_BUCKETNAME=affiliationbucket @@ -18,9 +19,12 @@ ENCRYPTION_KEY=somestrongencrytionkey LESS_SECURE_ENCRYPTION_KEY=ssssomestrongencrytionkey # form manager -FORM_MANAGER_URL=http://form-manager:3006 -MINIO_URL=http://minio:9000 +FORM_MANAGER_URL=https://3006-tushar5526-workflow-fnu74wzypyq.ws-us93.gitpod.io +MINIO_URL=https://9000-tushar5526-workflow-fnu74wzypyq.ws-us93.gitpod.io +MINIO_ENDPOINT=minio +MINIO_PORT=9000 REDIS_HOST=fm-cache +MINIO_USE_SSL=false REDIS_PORT=6379 # TSDB diff --git a/.gitpod.yml b/.gitpod.yml index 7409835eed77155330b2acb76d86f52d8cc95a47..6d3e907ae12111baadd2806db286a03b02d816db 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -20,6 +20,9 @@ tasks: gp sync-done dev-setup sed -i~ "/^FORM_MANAGER_URL=/s/=.*/=https\:\/\/3006-${GITPOD_WORKSPACE_URL:8}/" .env sed -i~ "/^MINIO_URL=/s/=.*/=https\:\/\/9000-${GITPOD_WORKSPACE_URL:8}/" .env + sed -i~ "/^MINIO_ENDPOINT=/s/=.*/=9000-${GITPOD_WORKSPACE_URL:8}/" .env + sed -i~ "/^MINIO_PORT=/s/=.*/=80/" .env + sed -i~ "/^MINIO_USE_SSL=/s/=.*/=true/" .env docker-compose up -d gp sync-done setup - name: Setup React Wrapper diff --git a/docker-compose.yml b/docker-compose.yml index a38554000a51db824c748a46fd08c4cdea92d6db..94e0a0bb3e8d5602291a0c07cbad2280147259ca 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -185,6 +185,9 @@ services: - 3006:3006 environment: MINIO_USERNAME: ${MINIO_USERNAME} + MINIO_ENDPOINT: ${MINIO_ENDPOINT} + MINIO_PORT: ${MINIO_PORT} + MINIO_URL: ${MINIO_URL} MINIO_PASSWORD: ${MINIO_PASSWORD} MINIO_BUCKETNAME: ${MINIO_BUCKETNAME} REDIS_HOST: ${REDIS_HOST} diff --git a/packages/form-manager/src/app.controller.ts b/packages/form-manager/src/app.controller.ts index e5d08f43be9e53c151cc48219861e429badda7c9..c8d914cd5bbd0d1f8e4ed296d3a452cabdb4a7ae 100644 --- a/packages/form-manager/src/app.controller.ts +++ b/packages/form-manager/src/app.controller.ts @@ -47,6 +47,7 @@ export class AppController { private configService: ConfigService, ) { } + MINIO_ENDPOINT = this.configService.get('MINIO_ENDPOINT'); MINIO_URL = this.configService.get('MINIO_URL'); FORM_MANAGER_URL = this.configService.get('FORM_MANAGER_URL'); @@ -270,8 +271,9 @@ export class AppController { // console.log('sessionRes', sessionRes); const minioClient: Client = new Minio.Client({ - endPoint: this.MINIO_URL, - useSSL: true, + endPoint: this.MINIO_ENDPOINT, + port: parseInt(this.configService.get('MINIO_PORT')), + useSSL: this.configService.get('MINIO_USE_SSL') === true, accessKey: this.configService.get('MINIO_USERNAME'), secretKey: this.configService.get('MINIO_PASSWORD') });