Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
63168f4
frontend
ridha-boughediri Nov 15, 2022
2a938b6
push front
selimamri Nov 15, 2022
c81e5a4
sequelette front
selimamri Nov 15, 2022
e0018f6
fix folders
selimamri Nov 15, 2022
daa0186
fix folders
selimamri Nov 15, 2022
0ada595
delete useless folder
selimamri Nov 15, 2022
3f1d3e1
delete useless folder
selimamri Nov 15, 2022
1e0f6e6
nouvelle table sur le strapi
ridha-boughediri Nov 15, 2022
92be533
Merge branch 'main' of https://github.com/ridha-boughediri/olympion1
ridha-boughediri Nov 15, 2022
9609769
nouvelle table strapi
ridha-boughediri Nov 15, 2022
a93850e
front
Corabou Nov 15, 2022
fcf14d1
Merge pull request #1 from ridha-boughediri/co
Cora-epitech Nov 15, 2022
1a07bc0
init backend
ridha-boughediri Nov 15, 2022
badf55b
Merge pull request #3 from ridha-boughediri/backinit
ridha-boughediri Nov 15, 2022
2fcabdf
front
Corabou Nov 15, 2022
998e2a7
Merge pull request #4 from ridha-boughediri/co
Cora-epitech Nov 15, 2022
89ebb29
ajout des liens et de quelques parties
selimamri Nov 15, 2022
1dfd248
ajout des liens et de quelques parties
selimamri Nov 15, 2022
5f8fbd3
ajout des liens et de quelques parties
selimamri Nov 15, 2022
efb9d2e
update
ridha-boughediri Nov 15, 2022
852af83
organisation fichier
ridha-boughediri Nov 15, 2022
610b218
ajout footer et list presents
selimamri Nov 15, 2022
e404d88
Delete .github/workflows directory
selimamri Nov 15, 2022
4b56fb8
Delete backolympion directory
selimamri Nov 15, 2022
f03edc8
Delete public directory
selimamri Nov 15, 2022
19781e9
Delete src directory
selimamri Nov 15, 2022
f8eed20
Delete .gitignore
selimamri Nov 15, 2022
750dded
Delete README.md
selimamri Nov 15, 2022
a2acc7b
Delete package-lock.json
selimamri Nov 15, 2022
92ef5f8
Delete package.json
selimamri Nov 15, 2022
085ebaf
corrections
Corabou Nov 15, 2022
01e2a97
add pictures of athletes
haryler Nov 15, 2022
3b117f6
correction
Corabou Nov 15, 2022
567ea03
Merge pull request #5 from ridha-boughediri/co
Cora-epitech Nov 15, 2022
18304b8
footer et ajout athlete
selimamri Nov 15, 2022
44f2031
add icone.jpg
haryler Nov 15, 2022
7606144
Merge branch 'master' of https://github.com/ridha-boughediri/olympion1
haryler Nov 15, 2022
4026d16
profile
Corabou Nov 15, 2022
fc48f0a
Merge branch 'co'
Corabou Nov 15, 2022
bef9634
commit footer css
selimamri Nov 15, 2022
82ddf7c
Merge branch 'master' of https://github.com/ridha-boughediri/olympion1
selimamri Nov 15, 2022
e75d7b6
test
Corabou Nov 15, 2022
0d02d2d
fin css presents
selimamri Nov 15, 2022
5bce5d5
Merge branch 'master' of https://github.com/ridha-boughediri/olympion1
selimamri Nov 15, 2022
e315a3e
c'est la galere
Corabou Nov 15, 2022
e95c093
front
Corabou Nov 15, 2022
f164709
correctiona account et presents
selimamri Nov 16, 2022
2cc3d17
Merge branch 'master'
haryler Nov 16, 2022
48f1791
correction cadeaux
selimamri Nov 16, 2022
0965680
Merge branch 'master'
haryler Nov 16, 2022
4ec23f6
add 'icone-velo.png' to 'Images' folder
haryler Nov 16, 2022
69c3190
ajout account delete service connexion
selimamri Nov 16, 2022
d8b1b4a
Merge branch 'main' of https://github.com/ridha-boughediri/olympion1
selimamri Nov 16, 2022
6855424
delete link servicetransport
ridha-boughediri Nov 16, 2022
bd7fe87
correction apres suppression
selimamri Nov 16, 2022
08967e9
css account + presents
selimamri Nov 16, 2022
f355903
last commit
selimamri Nov 16, 2022
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
16 changes: 16 additions & 0 deletions backolympion/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[{package.json,*.yml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false
6 changes: 6 additions & 0 deletions backolympion/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
HOST=0.0.0.0
PORT=1337
APP_KEYS="toBeModified1,toBeModified2"
API_TOKEN_SALT=tobemodified
ADMIN_JWT_SECRET=tobemodified
JWT_SECRET=tobemodified
3 changes: 3 additions & 0 deletions backolympion/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.cache
build
**/node_modules/**
27 changes: 27 additions & 0 deletions backolympion/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"commonjs": true,
"es6": true,
"node": true,
"browser": false
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": false
},
"sourceType": "module"
},
"globals": {
"strapi": true
},
"rules": {
"indent": ["error", 2, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"no-console": 0,
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
}
115 changes: 115 additions & 0 deletions backolympion/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
############################
# OS X
############################

.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*


############################
# Linux
############################

*~


############################
# Windows
############################

Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp


############################
# Packages
############################

*.7z
*.csv
*.dat
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.com
*.class
*.dll
*.exe
*.o
*.seed
*.so
*.swo
*.swp
*.swn
*.swm
*.out
*.pid


############################
# Logs and databases
############################

.tmp
*.log
*.sql
*.sqlite
*.sqlite3


############################
# Misc.
############################

*#
ssl
.idea
nbproject
public/uploads/*
!public/uploads/.gitkeep

############################
# Node.js
############################

lib-cov
lcov.info
pids
logs
results
node_modules
.node_history

############################
# Tests
############################

testApp
coverage

############################
# Strapi
############################

.env
license.txt
exports
*.cache
dist
build
.strapi-updater.json
57 changes: 57 additions & 0 deletions backolympion/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# 🚀 Getting started with Strapi

Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html) (CLI) which lets you scaffold and manage your project in seconds.

### `develop`

Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-develop)

```
npm run develop
# or
yarn develop
```

### `start`

Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-start)

```
npm run start
# or
yarn start
```

### `build`

Build your admin panel. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-build)

```
npm run build
# or
yarn build
```

## ⚙️ Deployment

Strapi gives you many possible deployment options for your project. Find the one that suits you on the [deployment section of the documentation](https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/deployment.html).

## 📚 Learn more

- [Resource center](https://strapi.io/resource-center) - Strapi resource center.
- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation.
- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community.
- [Strapi blog](https://docs.strapi.io) - Official Strapi blog containing articles made by the Strapi team and the community.
- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements.

Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome!

## ✨ Community

- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team.
- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members.
- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi.

---

<sub>🤫 Psst! [Strapi is hiring](https://strapi.io/careers).</sub>
8 changes: 8 additions & 0 deletions backolympion/config/admin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = ({ env }) => ({
auth: {
secret: env('ADMIN_JWT_SECRET'),
},
apiToken: {
salt: env('API_TOKEN_SALT'),
},
});
7 changes: 7 additions & 0 deletions backolympion/config/api.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
rest: {
defaultLimit: 25,
maxLimit: 100,
withCount: true,
},
};
11 changes: 11 additions & 0 deletions backolympion/config/database.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const path = require('path');

module.exports = ({ env }) => ({
connection: {
client: 'sqlite',
connection: {
filename: path.join(__dirname, '..', env('DATABASE_FILENAME', '.tmp/data.db')),
},
useNullAsDefault: true,
},
});
12 changes: 12 additions & 0 deletions backolympion/config/middlewares.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = [
'strapi::errors',
'strapi::security',
'strapi::cors',
'strapi::poweredBy',
'strapi::logger',
'strapi::query',
'strapi::body',
'strapi::session',
'strapi::favicon',
'strapi::public',
];
7 changes: 7 additions & 0 deletions backolympion/config/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
app: {
keys: env.array('APP_KEYS'),
},
});
Empty file.
Binary file added backolympion/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading