[docs] Fix ACCOUNTS ENDPOINT variable. (#4511)

This commit is contained in:
Neeraj Gupta 2024-12-27 13:21:21 +05:30 committed by GitHub
commit 6447ba6ec0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,7 +45,7 @@ RUN corepack enable
# Configure Albums and Accounts Endpoints
ENV NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=https://your-domain.com
ENV NEXT_PUBLIC_ENTE_ACCOUNTS_ENDPOINT=https://your-domain.com
ENV NEXT_PUBLIC_ENTE_ACCOUNTS_URL=https://your-domain.com
RUN yarn cache clean
RUN yarn install --network-timeout 1000000000
@ -124,7 +124,7 @@ Moving ahead, we need to paste the below contents into the compose.yaml inside
- 3004:3004
environment:
- NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=https://your-domain.com
- NEXT_PUBLIC_ENTE_ACCOUNTS_ENDPOINT=https://your-domain.com
- NEXT_PUBLIC_ENTE_ACCOUNTS_URL=https://your-domain.com
- NODE_ENV=development
restart: always
```