Simplify infrastructure to one container

This commit is contained in:
Charles Bochet
2023-03-06 16:15:46 +01:00
parent 2ddb191556
commit c2833cad53
61 changed files with 2211 additions and 1992 deletions

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "twenty",
"version": "1.0.0",
"description": "Open-source CRM",
"main": "index.js",
"scripts": {
"server": "npm start --prefix server",
"front": "npm start --prefix front",
"start": "concurrently \"npm run server\" \"npm run front\""
},
"author": "Charles Bochet",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.6.0"
}
}