Compare commits
7 Commits
6ed6682824
...
5b3fcc1eaf
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5b3fcc1eaf | ||
![]() |
cc4da39f74 | ||
![]() |
e98b9ff6d7 | ||
![]() |
393bdae782 | ||
![]() |
82ee58dd25 | ||
![]() |
7fa33cbdbc | ||
![]() |
bd5d50cf97 |
37
.github/workflows/cicd.yml
vendored
Normal file
37
.github/workflows/cicd.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: Build and Push to Registry
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ cicd ]
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: git.4nkweb.com
|
||||||
|
IMAGE_NAME: 4nk/lecoffre-front
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-push:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ secrets.USER }}
|
||||||
|
password: ${{ secrets.TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
build-args: |
|
||||||
|
SSH_PRIVATE_KEY=${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
tags: |
|
||||||
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
||||||
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ gitea.sha }}
|
78
.github/workflows/ppd.yml
vendored
78
.github/workflows/ppd.yml
vendored
@ -1,78 +0,0 @@
|
|||||||
name: Preprod - Build & Deploy to Scaleway
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [preprod]
|
|
||||||
|
|
||||||
env:
|
|
||||||
PROJECT_ID_LECOFFRE: 72d08499-37c2-412b-877e-f8af0471654a
|
|
||||||
NAMESPACE_ID_LECOFFRE: e975f056-967e-43fe-b237-84bfa8032e64
|
|
||||||
CONTAINER_REGISTRY_ENDPOINT_LECOFFRE: rg.fr-par.scw.cloud/funcscwlecoffreppdmp73pool
|
|
||||||
|
|
||||||
IMAGE_NAME: front
|
|
||||||
CONTAINER_NAME: front
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-push-image-lecoffre:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Setup SSH
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/.ssh
|
|
||||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
|
|
||||||
chmod 600 ~/.ssh/id_rsa
|
|
||||||
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
|
|
||||||
env:
|
|
||||||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
||||||
- name: Copy SSH
|
|
||||||
run: cp ~/.ssh/id_rsa id_rsa
|
|
||||||
- name: Login to Scaleway Container Registry
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
username: nologin
|
|
||||||
password: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
registry: ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}
|
|
||||||
- name: Get Git Commit SHA
|
|
||||||
id: vars
|
|
||||||
run: echo "COMMIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
||||||
- name: Build the Docker Image
|
|
||||||
run: docker build . -t ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}/${{ env.IMAGE_NAME }}
|
|
||||||
- name: Push the Docker Image to Scaleway Container Registry
|
|
||||||
run: docker push ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}/${{ env.IMAGE_NAME }}
|
|
||||||
deploy-to-scaleway-lecoffre:
|
|
||||||
needs: build-and-push-image-lecoffre
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
environment: preprod
|
|
||||||
steps:
|
|
||||||
- name: Install CLI
|
|
||||||
uses: scaleway/action-scw@v0
|
|
||||||
- name: Get container ID
|
|
||||||
run: |
|
|
||||||
echo "CONTAINER_ID=$(scw container container list namespace-id=${{env.NAMESPACE_ID_LECOFFRE}} -o json | jq -r '.[] | select(.name == "${{ env.CONTAINER_NAME }}") | .id')" >> $GITHUB_ENV
|
|
||||||
env:
|
|
||||||
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY_LECOFFRE }}
|
|
||||||
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_PROJECT_ID: ${{ env.PROJECT_ID_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID_LECOFFRE }}
|
|
||||||
- name: Deploy the container based on the new image
|
|
||||||
run: |
|
|
||||||
env_string=""
|
|
||||||
while IFS= read -r line; do
|
|
||||||
if [[ "$line" == *"="* ]]; then
|
|
||||||
key=$(echo "$line" | cut -d '=' -f 1)
|
|
||||||
value=$(echo "$line" | cut -d '=' -f 2-)
|
|
||||||
if [[ -n "$key" ]]; then
|
|
||||||
env_string+="environment-variables.$key=$value "
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done <<< "$ENV_VARS"
|
|
||||||
env_string=$(echo $env_string | sed 's/ $//')
|
|
||||||
scw container container update ${{ env.CONTAINER_ID }} $env_string
|
|
||||||
env:
|
|
||||||
ENV_VARS: ${{ secrets.ENV }}
|
|
||||||
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY_LECOFFRE }}
|
|
||||||
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_PROJECT_ID: ${{ env.PROJECT_ID_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID_LECOFFRE }}
|
|
||||||
|
|
79
.github/workflows/prd.yml
vendored
79
.github/workflows/prd.yml
vendored
@ -1,79 +0,0 @@
|
|||||||
name: Prod - Build & Deploy to Scaleway
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
|
|
||||||
env:
|
|
||||||
|
|
||||||
PROJECT_ID_LECOFFRE: 72d08499-37c2-412b-877e-f8af0471654a
|
|
||||||
NAMESPACE_ID_LECOFFRE: 8fbbce9d-31d1-4368-94c4-445e79f10834
|
|
||||||
CONTAINER_REGISTRY_ENDPOINT_LECOFFRE: rg.fr-par.scw.cloud/funcscwlecoffreprdjulp9mam
|
|
||||||
|
|
||||||
IMAGE_NAME: front
|
|
||||||
CONTAINER_NAME: front
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-push-image-lecoffre:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Setup SSH
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/.ssh
|
|
||||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
|
|
||||||
chmod 600 ~/.ssh/id_rsa
|
|
||||||
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
|
|
||||||
env:
|
|
||||||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
||||||
- name: Copy SSH
|
|
||||||
run: cp ~/.ssh/id_rsa id_rsa
|
|
||||||
- name: Login to Scaleway Container Registry
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
username: nologin
|
|
||||||
password: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
registry: ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}
|
|
||||||
- name: Get Git Commit SHA
|
|
||||||
id: vars
|
|
||||||
run: echo "COMMIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
||||||
- name: Build the Docker Image
|
|
||||||
run: docker build . -t ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}/${{ env.IMAGE_NAME }}
|
|
||||||
- name: Push the Docker Image to Scaleway Container Registry
|
|
||||||
run: docker push ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}/${{ env.IMAGE_NAME }}
|
|
||||||
deploy-to-scaleway-lecoffre:
|
|
||||||
needs: build-and-push-image-lecoffre
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
environment: prod
|
|
||||||
steps:
|
|
||||||
- name: Install CLI
|
|
||||||
uses: scaleway/action-scw@v0
|
|
||||||
- name: Get container ID
|
|
||||||
run: |
|
|
||||||
echo "CONTAINER_ID=$(scw container container list namespace-id=${{env.NAMESPACE_ID_LECOFFRE}} -o json | jq -r '.[] | select(.name == "${{ env.CONTAINER_NAME }}") | .id')" >> $GITHUB_ENV
|
|
||||||
env:
|
|
||||||
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY_LECOFFRE }}
|
|
||||||
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_PROJECT_ID: ${{ env.PROJECT_ID_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID_LECOFFRE }}
|
|
||||||
- name: Deploy the container based on the new image
|
|
||||||
run: |
|
|
||||||
env_string=""
|
|
||||||
while IFS= read -r line; do
|
|
||||||
if [[ "$line" == *"="* ]]; then
|
|
||||||
key=$(echo "$line" | cut -d '=' -f 1)
|
|
||||||
value=$(echo "$line" | cut -d '=' -f 2-)
|
|
||||||
if [[ -n "$key" ]]; then
|
|
||||||
env_string+="environment-variables.$key=$value "
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done <<< "$ENV_VARS"
|
|
||||||
env_string=$(echo $env_string | sed 's/ $//')
|
|
||||||
scw container container update ${{ env.CONTAINER_ID }} $env_string
|
|
||||||
env:
|
|
||||||
ENV_VARS: ${{ secrets.ENV }}
|
|
||||||
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY_LECOFFRE }}
|
|
||||||
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_PROJECT_ID: ${{ env.PROJECT_ID_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID_LECOFFRE }}
|
|
||||||
|
|
74
.github/workflows/stg.yml
vendored
74
.github/workflows/stg.yml
vendored
@ -1,74 +0,0 @@
|
|||||||
name: Staging - Build & Deploy to Scaleway
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [staging]
|
|
||||||
|
|
||||||
env:
|
|
||||||
PROJECT_ID_LECOFFRE: 72d08499-37c2-412b-877e-f8af0471654a
|
|
||||||
NAMESPACE_ID_LECOFFRE: f8137e85-47ad-46a5-9e2e-18af5de829c5
|
|
||||||
CONTAINER_REGISTRY_ENDPOINT_LECOFFRE: rg.fr-par.scw.cloud/funcscwlecoffrestgbqbfhtv6
|
|
||||||
|
|
||||||
IMAGE_NAME: front
|
|
||||||
CONTAINER_NAME: front
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-push-image-lecoffre:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Setup SSH
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/.ssh
|
|
||||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
|
|
||||||
chmod 600 ~/.ssh/id_rsa
|
|
||||||
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
|
|
||||||
env:
|
|
||||||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
||||||
- name: Copy SSH
|
|
||||||
run: cp ~/.ssh/id_rsa id_rsa
|
|
||||||
- name: Login to Scaleway Container Registry
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
username: nologin
|
|
||||||
password: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
registry: ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}
|
|
||||||
- name: Build the Docker Image
|
|
||||||
run: docker build . -t ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}/${{ env.IMAGE_NAME }}
|
|
||||||
- name: Push the Docker Image to Scaleway Container Registry
|
|
||||||
run: docker push ${{ env.CONTAINER_REGISTRY_ENDPOINT_LECOFFRE }}/${{ env.IMAGE_NAME }}
|
|
||||||
deploy-to-scaleway-lecoffre:
|
|
||||||
needs: build-and-push-image-lecoffre
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
environment: staging
|
|
||||||
steps:
|
|
||||||
- name: Install CLI
|
|
||||||
uses: scaleway/action-scw@v0
|
|
||||||
- name: Get container ID
|
|
||||||
run: |
|
|
||||||
echo "CONTAINER_ID=$(scw container container list namespace-id=${{env.NAMESPACE_ID_LECOFFRE}} -o json | jq -r '.[] | select(.name == "${{ env.CONTAINER_NAME }}") | .id')" >> $GITHUB_ENV
|
|
||||||
env:
|
|
||||||
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY_LECOFFRE }}
|
|
||||||
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_PROJECT_ID: ${{ env.PROJECT_ID_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID_LECOFFRE }}
|
|
||||||
- name: Deploy the container based on the new image
|
|
||||||
run: |
|
|
||||||
env_string=""
|
|
||||||
while IFS= read -r line; do
|
|
||||||
if [[ "$line" == *"="* ]]; then
|
|
||||||
key=$(echo "$line" | cut -d '=' -f 1)
|
|
||||||
value=$(echo "$line" | cut -d '=' -f 2-)
|
|
||||||
if [[ -n "$key" ]]; then
|
|
||||||
env_string+="environment-variables.$key=$value "
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done <<< "$ENV_VARS"
|
|
||||||
env_string=$(echo $env_string | sed 's/ $//')
|
|
||||||
scw container container update ${{ env.CONTAINER_ID }} $env_string
|
|
||||||
env:
|
|
||||||
ENV_VARS: ${{ secrets.ENV }}
|
|
||||||
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY_LECOFFRE }}
|
|
||||||
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_PROJECT_ID: ${{ env.PROJECT_ID_LECOFFRE }}
|
|
||||||
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID_LECOFFRE }}
|
|
14
Dockerfile
14
Dockerfile
@ -4,13 +4,17 @@ FROM node:19-alpine AS deps
|
|||||||
WORKDIR leCoffre-front
|
WORKDIR leCoffre-front
|
||||||
|
|
||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
|
COPY .env ./
|
||||||
|
|
||||||
RUN apk update && apk add openssh-client git
|
RUN apk update && apk add openssh-client git
|
||||||
|
|
||||||
COPY id_rsa /root/.ssh/id_rsa
|
ARG SSH_PRIVATE_KEY
|
||||||
RUN chmod 600 ~/.ssh/id_rsa
|
RUN mkdir -p /root/.ssh && \
|
||||||
RUN eval "$(ssh-agent -s)" && ssh-add /root/.ssh/id_rsa
|
echo "${SSH_PRIVATE_KEY}" > /root/.ssh/id_rsa && \
|
||||||
RUN ssh-keyscan github.com smart-chain-fr/leCoffre-resources.git >> /root/.ssh/known_hosts
|
chmod 600 /root/.ssh/id_rsa && \
|
||||||
|
eval "$(ssh-agent -s)" && \
|
||||||
|
ssh-add /root/.ssh/id_rsa && \
|
||||||
|
ssh-keyscan git.4nkweb.com >> /root/.ssh/known_hosts
|
||||||
|
|
||||||
RUN npm install --frozen-lockfile
|
RUN npm install --frozen-lockfile
|
||||||
|
|
||||||
@ -21,6 +25,7 @@ WORKDIR leCoffre-front
|
|||||||
|
|
||||||
COPY --from=deps leCoffre-front/node_modules ./node_modules
|
COPY --from=deps leCoffre-front/node_modules ./node_modules
|
||||||
COPY --from=deps leCoffre-front/package.json package.json
|
COPY --from=deps leCoffre-front/package.json package.json
|
||||||
|
COPY --from=deps leCoffre-front/.env ./.env
|
||||||
COPY tsconfig.json tsconfig.json
|
COPY tsconfig.json tsconfig.json
|
||||||
COPY next.config.js next.config.js
|
COPY next.config.js next.config.js
|
||||||
COPY src src
|
COPY src src
|
||||||
@ -39,6 +44,7 @@ COPY --from=builder --chown=lecoffreuser leCoffre-front/node_modules ./node_modu
|
|||||||
COPY --from=builder --chown=lecoffreuser leCoffre-front/.next ./.next
|
COPY --from=builder --chown=lecoffreuser leCoffre-front/.next ./.next
|
||||||
COPY --from=builder --chown=lecoffreuser leCoffre-front/next.config.js ./next.config.js
|
COPY --from=builder --chown=lecoffreuser leCoffre-front/next.config.js ./next.config.js
|
||||||
COPY --from=builder --chown=lecoffreuser leCoffre-front/package.json ./package.json
|
COPY --from=builder --chown=lecoffreuser leCoffre-front/package.json ./package.json
|
||||||
|
COPY --from=builder --chown=lecoffreuser leCoffre-front/.env ./.env
|
||||||
|
|
||||||
USER lecoffreuser
|
USER lecoffreuser
|
||||||
|
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
# Install dependencies only when needed
|
|
||||||
FROM node:19-alpine AS deps
|
|
||||||
|
|
||||||
WORKDIR leCoffre-front
|
|
||||||
|
|
||||||
COPY package.json ./
|
|
||||||
|
|
||||||
RUN apk update && apk add openssh-client git
|
|
||||||
|
|
||||||
COPY id_rsa /root/.ssh/id_rsa
|
|
||||||
RUN chmod 600 ~/.ssh/id_rsa
|
|
||||||
RUN eval "$(ssh-agent -s)" && ssh-add /root/.ssh/id_rsa
|
|
||||||
RUN ssh-keyscan github.com smart-chain-fr/leCoffre-resources.git >> /root/.ssh/known_hosts
|
|
||||||
|
|
||||||
RUN npm install --frozen-lockfile
|
|
||||||
|
|
||||||
# Rebuild the source code only when needed
|
|
||||||
FROM node:19-alpine AS builder
|
|
||||||
|
|
||||||
WORKDIR leCoffre-front
|
|
||||||
|
|
||||||
COPY --from=deps leCoffre-front/node_modules ./node_modules
|
|
||||||
COPY --from=deps leCoffre-front/package.json package.json
|
|
||||||
COPY tsconfig.json tsconfig.json
|
|
||||||
COPY src src
|
|
||||||
|
|
||||||
RUN npm run build
|
|
||||||
|
|
||||||
# Production image, copy all the files and run next
|
|
||||||
FROM node:19-alpine AS production
|
|
||||||
|
|
||||||
WORKDIR leCoffre-front
|
|
||||||
|
|
||||||
RUN adduser -D lecoffreuser --uid 10000 && chown -R lecoffreuser .
|
|
||||||
|
|
||||||
COPY public ./public
|
|
||||||
COPY --from=builder --chown=lecoffreuser leCoffre-front/node_modules ./node_modules
|
|
||||||
COPY --from=builder --chown=lecoffreuser leCoffre-front/.next ./.next
|
|
||||||
COPY --from=builder --chown=lecoffreuser leCoffre-front/package.json ./package.json
|
|
||||||
|
|
||||||
USER lecoffreuser
|
|
||||||
|
|
||||||
CMD ["npm", "run", "start"]
|
|
||||||
EXPOSE 3000
|
|
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
reactStrictMode: false,
|
reactStrictMode: false,
|
||||||
|
typescript: {
|
||||||
|
ignoreBuildErrors: true,
|
||||||
|
},
|
||||||
publicRuntimeConfig: {
|
publicRuntimeConfig: {
|
||||||
// Will be available on both server and client
|
// Will be available on both server and client
|
||||||
NEXT_PUBLIC_BACK_API_PROTOCOL: process.env.NEXT_PUBLIC_BACK_API_PROTOCOL,
|
NEXT_PUBLIC_BACK_API_PROTOCOL: process.env.NEXT_PUBLIC_BACK_API_PROTOCOL,
|
||||||
|
5772
package-lock.json
generated
5772
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "NEXT_TELEMETRY_DISABLED=1 next build --no-lint",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint",
|
"lint": "next lint",
|
||||||
"format": "prettier --write src"
|
"format": "prettier --write src"
|
||||||
@ -30,7 +30,7 @@
|
|||||||
"heroicons": "^2.1.5",
|
"heroicons": "^2.1.5",
|
||||||
"jszip": "^3.10.1",
|
"jszip": "^3.10.1",
|
||||||
"jwt-decode": "^3.1.2",
|
"jwt-decode": "^3.1.2",
|
||||||
"le-coffre-resources": "file:../lecoffre-ressources",
|
"le-coffre-resources": "git+ssh://git@git.4nkweb.com/4nk/lecoffre-ressources.git#v2.167",
|
||||||
"next": "^14.2.3",
|
"next": "^14.2.3",
|
||||||
"prettier": "^2.8.7",
|
"prettier": "^2.8.7",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
|
@ -44,7 +44,7 @@ export default class Auth extends BaseApiService {
|
|||||||
const variables = FrontendVariables.getInstance();
|
const variables = FrontendVariables.getInstance();
|
||||||
|
|
||||||
// TODO: review
|
// TODO: review
|
||||||
const baseBackUrl = 'http://localhost:8080'//variables.BACK_API_PROTOCOL + variables.BACK_API_HOST;
|
const baseBackUrl = 'http://lecoffre-back:8080'//variables.BACK_API_PROTOCOL + variables.BACK_API_HOST;
|
||||||
|
|
||||||
const url = new URL(`${baseBackUrl}/api/v1/idnot/user/${autorizationCode}`);
|
const url = new URL(`${baseBackUrl}/api/v1/idnot/user/${autorizationCode}`);
|
||||||
try {
|
try {
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"alwaysStrict": true,
|
"alwaysStrict": true,
|
||||||
"noPropertyAccessFromIndexSignature": true,
|
"noPropertyAccessFromIndexSignature": true,
|
||||||
/* Additional Checks */
|
/* Additional Checks */
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": false,
|
||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
"noUncheckedIndexedAccess": true,
|
"noUncheckedIndexedAccess": true,
|
||||||
"useUnknownInCatchVariables": true,
|
"useUnknownInCatchVariables": true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user