Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #7

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a0a30e7
initial commit
davidaddi Mar 11, 2024
187ff5f
Merge branch 'main' of https://github.com/He202120/Dev-III-Group-2TL1-7
davidaddi Mar 11, 2024
cf835f1
Ajout index
CiamalaKombeGreg Mar 12, 2024
b012819
repush dosssier server
davidaddi Mar 12, 2024
4766242
Nouvelle branch develop
davidaddi Mar 12, 2024
b58ce8b
Feature1
davidaddi Mar 12, 2024
1061b9d
commit DImitri
Dimtiri19 Mar 12, 2024
cb95fbb
commit Greg
CiamalaKombeGreg Mar 12, 2024
3f8c0bd
Merge pull request #3 from He202120/sitename
Dimtiri19 Mar 12, 2024
e6947f9
Merge pull request #1 from He202120/feature1
Dimtiri19 Mar 12, 2024
9fc5c4b
Merge branch 'develop' into feature_1
davidaddi Mar 12, 2024
5fdb0a0
Merge pull request #2 from He202120/feature_1
davidaddi Mar 12, 2024
5c25979
branch zawill
zawil-10 Mar 12, 2024
1f15994
corriger probleme
zawil-10 Mar 12, 2024
eed4f8b
commit zawill
zawil-10 Mar 12, 2024
ef1cf3d
Merge branch 'develop' into zawill
Dimtiri19 Mar 12, 2024
f132311
Merge pull request #4 from He202120/zawill
Dimtiri19 Mar 12, 2024
7ddd49c
React-rooter BASE
CiamalaKombeGreg Mar 19, 2024
34114c3
Merge pull request #6 from He202120/sitename
He202120 Mar 19, 2024
d435591
implémentation des routes de base
davidaddi Mar 26, 2024
7fbb5b3
Implémentation des routes d'acceuil et d'authentification
davidaddi Mar 26, 2024
747524a
Routes
davidaddi Mar 26, 2024
8d9cd2c
Frontend updates + Clerk auth implementation
davidaddi Apr 9, 2024
ab1f7ff
Frontend updates + Clerk auth implementation
davidaddi Apr 9, 2024
adfc972
Merge pull request #9 from He202120/auth
CiamalaKombeGreg Apr 9, 2024
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
674 changes: 0 additions & 674 deletions LICENSE

This file was deleted.

21 changes: 0 additions & 21 deletions README.md

This file was deleted.

21 changes: 21 additions & 0 deletions client/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
26 changes: 26 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
./node_modules
.env
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
8 changes: 8 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# React + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
17 changes: 17 additions & 0 deletions client/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": false,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/index.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
13 changes: 13 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RFC Wetteren - Football website</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
11 changes: 11 additions & 0 deletions client/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
}
}
}

Loading