Add application code

This commit is contained in:
Lalit Mohan Kalpasi 2026-03-17 12:43:01 +05:30
parent 177d718dba
commit 0a059bb07b
3 changed files with 45 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 8080
CMD ["node", "index.js"]

21
index.js Normal file
View File

@ -0,0 +1,21 @@
const express = require('express');
const app = express();
const PORT = process.env.PORT || 8080;
app.use(express.json());
app.get('/hello', (req, res) => {
res.json({ message: 'Hello from git-kalpasi!' });
});
app.get('/health', (req, res) => {
res.json({ status: 'ok', timestamp: new Date().toISOString() });
});
app.get('/', (req, res) => {
res.json({ app: 'git-kalpasi', version: '1.0.0' });
});
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});

11
package.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "git-kalpasi",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"express": "^4.18.2"
}
}