Compare commits

..

10 Commits

Author SHA1 Message Date
bfbc51226c Suppression de l'image docker 2024-10-30 02:13:09 +01:00
0541d3aa6c Ajout de l'image docker de strapi 2024-10-30 02:02:28 +01:00
3247349094 port 1337 -> 3004 2024-10-30 00:23:38 +01:00
0a39132c8c update to 5.1.1 2024-10-30 00:18:53 +01:00
ea40178fc1 update to 4.25.14 with good version 2024-10-30 00:11:29 +01:00
fcad2139cf update to 4.25.14 2024-10-30 00:07:55 +01:00
425a163a1c update empty 2024-10-29 23:50:12 +01:00
ed791d4f3d add gitignore 2024-10-29 23:48:16 +01:00
ef2939f558 update to 4.25.11 2024-10-29 23:46:40 +01:00
4ace05f796 delete zitadel 2024-10-29 17:55:08 +01:00
4 changed files with 5721 additions and 5875 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules/

View File

@@ -1,4 +1,4 @@
version: "3"
# version: "3"
services:
strapi:
container_name: strapi
@@ -25,7 +25,7 @@ services:
- ./.env:/opt/app/.env
- ./public/uploads:/opt/app/public/uploads
ports:
- "1337:1337"
- "3004:1337"
networks:
- strapi
depends_on:

11542
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,40 +1,35 @@
{
"name": "strapi",
"private": true,
"version": "0.1.0",
"private": true,
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"deploy": "strapi deploy"
},
"dependencies": {
"@iopanda/strapi-crack-ee": "^1.0.12",
"@strapi/plugin-cloud": "4.25.8",
"@strapi/plugin-i18n": "4.25.8",
"@strapi/plugin-users-permissions": "4.25.8",
"@strapi/strapi": "4.25.8",
"passport-zitadel": "^1.1.22",
"patch-package": "^8.0.0",
"pg": "^8.12.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "5.3.4",
"strapi-provider-email-smtp": "^1.0.3",
"styled-components": "5.3.3"
},
"license": "MIT",
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "73bb53bd-b1e5-4e73-875b-32f65fce5eb2"
"scripts": {
"build": "strapi build",
"deploy": "strapi deploy",
"develop": "strapi develop",
"start": "strapi start",
"strapi": "strapi"
},
"dependencies": {
"@strapi/plugin-cloud": "5.1.1",
"@strapi/plugin-users-permissions": "5.1.1",
"@strapi/strapi": "5.1.1",
"pg": "8.8.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"devDependencies": {},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"postinstall": "patch-package",
"license": "MIT"
"strapi": {
"uuid": "73bb53bd-b1e5-4e73-875b-32f65fce5eb2"
}
}