-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
94 lines (80 loc) · 2.79 KB
/
Copy pathserver.js
File metadata and controls
94 lines (80 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import "dotenv/config";
import express from "express";
import http from "http";
import cors from "cors";
import {
initializeDatabase,
initializeStorage,
} from "./src/services/connectionService.js";
import healthRoutes from "./src/routes/health.js";
import { setupSocket } from "./src/socket/socket.js";
import issueRoutes from "./src/routes/issues.js";
import userRoutes from "./src/routes/users.js";
import branchRoutes from "./src/routes/branch.js";
import thirdPartiesRoutes from "./src/routes/thirdparties.js";
import cashRequestRoutes from "./src/routes/cashRequestRoutes.js";
import ahpRoutes from './src/routes/ahpRoutes.js';
import outsidePartyRequestRoutes from './src/routes/outsidePartyRequests.js';
import authRoutes from "./src/routes/auth.js";
import { authenticateToken } from "./src/middleware/auth.js";
const app = express();
const server = http.createServer(app);
// Middleware
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// Enable CORS
app.use(cors({ origin: "*" }));
// Routes
app.use("/api/health", healthRoutes);
app.use("/api/v1/auth", authRoutes);
// Protected routes - require authentication
app.use(authenticateToken);
app.use("/api/v1/cash-requests", cashRequestRoutes);
app.use("/api/v1/issues", issueRoutes);
app.use("/api/v1/users", userRoutes);
// app.use("/api/v1/messages", messageRoutes);
app.use("/api/v1/branches", branchRoutes);
app.use("/api/v1/thirdparties", thirdPartiesRoutes);
app.use('/api/v1/petty-cash-requests', cashRequestRoutes);
app.use('/api/v1/ahp', ahpRoutes);
app.use('/api/v1/outside-party-requests', outsidePartyRequestRoutes);
// Basic route
app.get("/api/", (req, res) => {
res.json({
message: "FixPoint API Server is running!",
version: "1.0.0",
timestamp: new Date().toISOString(),
});
});
// Initialize services and start server
async function startServer() {
const PORT = process.env.PORT || 5000;
try {
console.log("Starting FixPoint Server...");
// Initialize database connection
console.log("Initializing database connection...");
await initializeDatabase();
// Initialize MinIO storage
console.log("Initializing MinIO storage...");
await initializeStorage();
//Socket.io
await setupSocket(server);
// Start server
server.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
console.log(`Server URL: http://localhost:${PORT}`);
console.log(`Health check: http://localhost:${PORT}/api/health`);
console.log(
`Database health: http://localhost:${PORT}/api/health/database`,
);
console.log(
`Storage health: http://localhost:${PORT}/api/health/storage`,
);
});
} catch (error) {
console.error("Failed to start server:", error.message);
process.exit(1);
}
}
// Start the server
startServer();