Skip to content

Commit 89e4cbd

Browse files
authored
Merge pull request #121 from RustyRory/feat/119-installation-nextjs
feat(front): Fixes #119 - Installation NextJs
2 parents a5a25d5 + 6c696e4 commit 89e4cbd

13 files changed

Lines changed: 7773 additions & 102 deletions

File tree

.github/workflows/ticket.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fi
2626
2727
# Regex pour le commit / titre PR : type(nom): Fixes #<num> - message
28-
if [[ "$PR_TITLE" =~ ^(feat|fix|docs|chore|refactor|test|hotfix)\([a-zA-Z0-9_-]+\):\ Fixes\ \#[0-9]+\ -\ .+ ]]; then
28+
if [[ "$PR_TITLE" =~ ^(feat|feature|fix|docs|chore|refactor|test|hotfix)\([a-zA-Z0-9_-]+\):\ Fixes\ \#[0-9]+\ -\ .+ ]]; then
2929
echo "✅ Titre de PR valide avec référence au ticket"
3030
exit 0
3131
fi

.gitignore

Lines changed: 39 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,133 +1,96 @@
11
####################################
2-
# Node / npm / yarn / pnpm
2+
# Dependencies
33
####################################
44
node_modules/
5+
6+
# Yarn / pnpm
7+
.pnp
8+
.pnp.*
9+
.yarn/*
10+
!.yarn/patches
11+
!.yarn/plugins
12+
!.yarn/releases
13+
!.yarn/versions
14+
15+
####################################
16+
# Logs
17+
####################################
18+
logs/
19+
*.log
520
npm-debug.log*
621
yarn-debug.log*
722
yarn-error.log*
823
pnpm-debug.log*
9-
package-lock.json
10-
yarn.lock
11-
pnpm-lock.yaml
1224

1325
####################################
14-
# Environments / secrets
26+
# Environment / Secrets
1527
####################################
1628
.env
1729
.env.*
1830
!.env.example
1931

2032
####################################
21-
# Builds
33+
# Build / Production
2234
####################################
2335
dist/
2436
build/
2537
coverage/
2638

27-
####################################
28-
# React / CRA
29-
####################################
30-
app/frontend/build/
31-
app/frontend/.env.local
32-
app/frontend/.env.development.local
33-
app/frontend/.env.test.local
34-
app/frontend/.env.production.local
35-
36-
####################################
37-
# Logs
38-
####################################
39-
logs/
40-
*.log
39+
# Next.js
40+
.next/
41+
out/
42+
next-env.d.ts
4143

4244
####################################
43-
# Cache / temp
45+
# Cache / Temp
4446
####################################
4547
.tmp/
4648
tmp/
4749
.cache/
4850
.eslintcache
4951

52+
####################################
53+
# Tests
54+
####################################
55+
test-results/
56+
5057
####################################
5158
# OS
5259
####################################
5360
.DS_Store
5461
Thumbs.db
5562

5663
####################################
57-
# IDE / editors
64+
# IDE
5865
####################################
5966
.vscode/*
6067
!.vscode/settings.json
6168
!.vscode/extensions.json
62-
6369
.idea/
6470
*.suo
6571
*.ntvs*
6672
*.njsproj
6773
*.sln
6874

6975
####################################
70-
# Tests
76+
# TypeScript
7177
####################################
72-
test-results/
73-
coverage/
78+
*.tsbuildinfo
7479

7580
####################################
76-
# Misc
81+
# Docker
7782
####################################
78-
*.pid
79-
*.seed
80-
*.pid.lock
83+
docker-compose.override.yml
8184

8285
####################################
83-
# Optional: TypeScript (si ajouté plus tard)
86+
# Vercel
8487
####################################
85-
*.tsbuildinfo
88+
.vercel
8689

8790
####################################
88-
# Docker (si utilisé plus tard)
91+
# Misc
8992
####################################
90-
docker-compose.override.yml
91-
92-
93-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
94-
95-
# dependencies
96-
/node_modules
97-
/.pnp
98-
.pnp.*
99-
.yarn/*
100-
!.yarn/patches
101-
!.yarn/plugins
102-
!.yarn/releases
103-
!.yarn/versions
104-
105-
# testing
106-
/coverage
107-
108-
# next.js
109-
/.next/
110-
/out/
111-
112-
# production
113-
/build
114-
115-
# misc
116-
.DS_Store
93+
*.pid
94+
*.pid.lock
95+
*.seed
11796
*.pem
118-
119-
# debug
120-
npm-debug.log*
121-
yarn-debug.log*
122-
yarn-error.log*
123-
.pnpm-debug.log*
124-
125-
# env files (can opt-in for committing if needed)
126-
.env*
127-
128-
# vercel
129-
.vercel
130-
131-
# typescript
132-
*.tsbuildinfo
133-
next-env.d.ts

CHANGELOG.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2626
-
2727
---
2828

29-
## [0.2.0] - 2026-01-
30-
29+
## [0.2.0] - 2026-02-11
3130
### Ajouté
3231

33-
- /Backend
34-
- server.js
35-
- /src
36-
- app.js
37-
- /controllers
38-
- /models
39-
- /routes
40-
- Scraping web
41-
- Préparation des données “racines”
42-
- Analyse de la page FFVB
43-
- Script de scraping
44-
- Mapping vers les modèles Mongo
45-
- Scraping du classement
46-
- Scraping des matchs
47-
- Normalisation & sécurité
48-
- Automatisation
49-
- Authentification
32+
/Backend
33+
server.js
34+
/src
35+
app.js
36+
/controllers
37+
/models
38+
/routes
39+
Scraping web
40+
Préparation des données “racines”
41+
Analyse de la page FFVB
42+
Script de scraping
43+
Mapping vers les modèles Mongo
44+
Scraping du classement
45+
Scraping des matchs
46+
Normalisation & sécurité
47+
Automatisation
48+
Authentification
49+
5050
5151
---
5252

0 commit comments

Comments
 (0)