Skip to content

Commit da096f3

Browse files
authored
Merge pull request #241 from cnumr/cms
Cms
2 parents 4277d47 + 58c0920 commit da096f3

145 files changed

Lines changed: 9147 additions & 6711 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": [],
11+
"___privatePackage_comment": "Ce projet est privé, les versions servent uniquement à tracker la synchronisation entre instances"
12+
}

.claude/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"attribution": {
3+
"commit": "",
4+
"pr": ""
5+
}
6+
}

.env.example

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,9 @@ GITHUB_PERSONAL_ACCESS_TOKEN=
1818
# Required when building locally
1919
GITHUB_OWNER=
2020
GITHUB_REPO=
21-
GITHUB_BRANCH=
21+
GITHUB_BRANCH=
22+
23+
# SEO - URL du site (obligatoire en production pour les images OpenGraph/Twitter)
24+
SITE_URL=https://example.com
25+
# Optionnel - base path si le site est hébergé sur un sous-répertoire
26+
PUBLIC_BASE=

.gitattributes

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Protéger le contenu spécifique au site lors des merges upstream
2+
src/content/** merge=ours
3+
public/img_fiches/** merge=ours
4+
5+
# Protéger les fichiers TinaCMS générés (dépendent de TINA_PUBLIC_REF_NAME)
6+
tina/tina-lock.json merge=ours
7+
tina/__generated__/** merge=ours
8+
9+
# Merge intelligent pour package.json (garde name/description local, prend dependencies upstream)
10+
package.json merge=package-json-merge
11+
12+
# Protéger la documentation spécifique au site
13+
README.md merge=ours
14+
README.*.md merge=ours

.gitconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[merge "ours"]
2+
driver = true
3+
4+
[merge "package-json-merge"]
5+
name = Merge intelligent package.json
6+
driver = scripts/merge-package-json.sh %O %A %B

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,29 @@
1111
/.next/
1212
/out/
1313

14+
# pagefind (generated at build time)
15+
/public/pagefind/
16+
17+
# api data (generated at build time)
18+
/public/api-data/
19+
1420
# production
1521
/build
1622

23+
# retype (generated documentation build)
24+
docs/.retype/
25+
1726
# misc
1827
.DS_Store
1928
.env
2029
.env.local
2130
.idea
2231

32+
# claude code
33+
.claude/settings.local.json
34+
2335
# debug
2436
npm-debug.log*
2537
yarn-debug.log*
2638
yarn-error.log*
39+
tsconfig.tsbuildinfo

.gitignore copy

Lines changed: 0 additions & 28 deletions
This file was deleted.

.local_mogodb/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.local_mogodb/docker-compose.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)