Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
fix: update the bucket installtion secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
NishaSharma14 committed Mar 10, 2023
1 parent 3ed88a6 commit ec9a3ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/developer-guides/installation/mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ Run the below command to publish all the jobs and start the worker for the backg
* Login with user - `sail` and password - `password`
* Go to Access Keys and create a new access key.
* Create the two buckets with Read Write Access as `nmrxiv` and `nmrxiv-public`
* Update Filesystem driver and the AWS Keys as below in the `.env` file. Make sure you point your `AWS_URL` to Minio API which is running in port 9000.
* Update the Filesystem driver and the AWS Keys as below in the `.env` file. Make sure you point your `AWS_URL` to Minio API endpoint which is running in port 9000. Please define both the public and private driver. The public bucket is used to store all the files which can be publicly accessible through out the application, such as profile & project images. All the private files uploaded by the user will end up in the private bucket.

```bash
FILESYSTEM_DRIVER=minio
FILESYSTEM_DRIVER_PUBLIC=minio_public

AWS_ACCESS_KEY_ID=RjcSdMxMiiGYycQV
AWS_SECRET_ACCESS_KEY=jCq9hAvsW4lmMzLzdyuvmoX7dqBpSc7W
AWS_ACCESS_KEY_ID=**********
AWS_SECRET_ACCESS_KEY=************
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=nmrxiv
AWS_ENDPOINT=http://localhost:9000/
Expand Down
6 changes: 3 additions & 3 deletions docs/developer-guides/installation/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ Run the below command to publish all the jobs and start the worker for the backg
* Login with user - `sail` and password - `password`
* Go to Access Keys and create a new access key.
* Create the two buckets with Read Write Access as `nmrxiv` and `nmrxiv-public`
* Update Filesystem driver and the AWS Keys as below in the `.env` file. Make sure you point your `AWS_URL` to Minio API which is running in port 9000.
* Update Filesystem driver and the AWS Keys as below in the `.env` file. Make sure you point your `AWS_URL` to Minio API which is running in port 9000. Please define both the public and private driver. The public bucket is used to store all the files which can be publicly accessible through out the application, such as profile & project images. All the private files uploaded by the user will end up in the private bucket.

```bash
FILESYSTEM_DRIVER=minio
FILESYSTEM_DRIVER_PUBLIC=minio_public

AWS_ACCESS_KEY_ID=RjcSdMxMiiGYycQV
AWS_SECRET_ACCESS_KEY=jCq9hAvsW4lmMzLzdyuvmoX7dqBpSc7W
AWS_ACCESS_KEY_ID==**********
AWS_SECRET_ACCESS_KEY===**********
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=nmrxiv
AWS_ENDPOINT=http://localhost:9000/
Expand Down
6 changes: 3 additions & 3 deletions docs/developer-guides/installation/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ Run the below command to publish all the jobs and start the worker for the backg
* Login with user - `sail` and password - `password`
* Go to Access Keys and create a new access key.
* Create the two buckets with Read Write Access as `nmrxiv` and `nmrxiv-public`
* Update Filesystem driver and the AWS Keys as below in the `.env` file. Make sure you point your `AWS_URL` to Minio API which is running in port 9000.
* Update Filesystem driver and the AWS Keys as below in the `.env` file. Make sure you point your `AWS_URL` to Minio API which is running in port 9000. Please define both the public and private driver. The public bucket is used to store all the files which can be publicly accessible through out the application, such as profile & project images. All the private files uploaded by the user will end up in the private bucket.

```bash
FILESYSTEM_DRIVER=minio
FILESYSTEM_DRIVER_PUBLIC=minio_public

AWS_ACCESS_KEY_ID=RjcSdMxMiiGYycQV
AWS_SECRET_ACCESS_KEY=jCq9hAvsW4lmMzLzdyuvmoX7dqBpSc7W
AWS_ACCESS_KEY_ID=**********
AWS_SECRET_ACCESS_KEY==**********
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=nmrxiv
AWS_ENDPOINT=http://localhost:9000/
Expand Down

0 comments on commit ec9a3ef

Please sign in to comment.