- Added index.js: Simple HTTP server on port 3000 - Added package.json: NPM configuration - Added Dockerfile: Multi-stage Docker build - Added .dockerignore: Exclude unnecessary files from build Ready for Coolify deployment via CI/CD pipeline.
17 lines
349 B
JSON
17 lines
349 B
JSON
{
|
|
"name": "firstcontact",
|
|
"version": "1.0.0",
|
|
"description": "First Contact - Hello World Application",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "node index.js"
|
|
},
|
|
"keywords": ["firstcontact", "hello-world"],
|
|
"author": "mikael.westoo",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|