feat: unified portal server, single database migration & railway configuration

This commit is contained in:
Danial HB
2026-06-14 09:30:10 +07:00
parent 7b8fa7d063
commit ce35d4d3f0
15 changed files with 884 additions and 71 deletions
@@ -0,0 +1,12 @@
{
"name": "webgis_chloropleth",
"version": "1.0.0",
"description": "Static WebGIS Chloropleth app wrapped in an Express server",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^5.2.1"
}
}
@@ -0,0 +1,10 @@
const express = require('express');
const path = require('path');
const app = express();
app.use(express.static(__dirname));
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`WebGIS Chloropleth static server running on port ${PORT}`);
});