Add deploy_sample

This commit is contained in:
2024-10-23 11:44:05 +02:00
parent 29744a8549
commit 71482b50b5
11 changed files with 2144 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "sample-app",
"version": "1.0.0",
"description": "Sample app to deploy in kubernetes cluster",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/mocha ./test/test.js"
},
"author": "Ricardo Montañana",
"license": "MIT",
"dependencies": {
"express": "^4.21.1"
},
"devDependencies": {
"mocha": "^10.7.3",
"supertest": "^7.0.0"
}
}