docker-compose

This commit is contained in:
2026-02-14 04:01:55 +00:00
parent bad92f64de
commit e9b410fd62
4 changed files with 428 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "simple-node-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:backend": "node backend/index.js",
"start:frontend": "node frontend/index.js",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"install:all": "cd backend && npm install && cd ../frontend && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.2.1"
}
}