Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*.md
**/node_modules
**/.next/cache
/formulaire
# /formulaire - Commenté car nécessaire pour build formulaire depuis contexte racine
.dockerignore
Dockerfile
.gitignore
Expand All @@ -14,4 +14,4 @@ CHANGELOG.md
.eslintcache
.kontinuous
.socialgouv.yaml
.releaserc.yml
.releaserc.yml
4 changes: 2 additions & 2 deletions .github/workflows/preproduction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ jobs:
- name: 📦 Build and push Docker image for form
uses: socialgouv/workflows/actions/buildkit@v1
with:
context: "formulaire"
dockerfile: "Dockerfile"
context: "."
dockerfile: "formulaire/Dockerfile"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
registry: "${{ vars.REGISTRY_URL }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ jobs:
- name: 📦 Build and push Docker image for form
uses: socialgouv/workflows/actions/buildkit@v1
with:
context: "formulaire"
dockerfile: "Dockerfile"
context: "."
dockerfile: "formulaire/Dockerfile"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
registry: "${{ vars.REGISTRY_URL }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/review-auto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ jobs:
- name: 📦 Build and push Docker image for form
uses: socialgouv/workflows/actions/buildkit@v1
with:
context: "formulaire"
dockerfile: "Dockerfile"
context: "."
dockerfile: "formulaire/Dockerfile"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
registry: "${{ vars.REGISTRY_URL }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ jobs:
- name: 📦 Build and push Docker image for form
uses: socialgouv/workflows/actions/buildkit@v1
with:
context: "formulaire"
dockerfile: "Dockerfile"
context: "."
dockerfile: "formulaire/Dockerfile"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
registry: "${{ vars.REGISTRY_URL }}"
Expand Down
11 changes: 4 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# local env files
.env
Expand All @@ -37,13 +38,9 @@ yarn-error.log*

.eslintcache

# Yarn Berry
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# pnpm
.pnpm-store/
.pnpm-debug.log

# VSCode
.vscode
14 changes: 14 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Configuration npm/pnpm pour sécurité
# Ce fichier garantit des paramètres sécurisés même si npm est utilisé par erreur

# Sécurité
audit-level=high
fund=false

# pnpm settings
shamefully-hoist=false
strict-peer-dependencies=false

# Sécurité: désactive les scripts par défaut (pnpm <10)
# Les packages de confiance sont listés dans package.json > pnpm.onlyBuiltDependencies
ignore-scripts=true
19 changes: 0 additions & 19 deletions .yarn/plugins/@yarnpkg/plugin-fetch.cjs

This file was deleted.

28 changes: 0 additions & 28 deletions .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

This file was deleted.

Loading
Loading