Update index.js
Browse files
index.js
CHANGED
@@ -4,6 +4,24 @@ const port = 7860
|
|
4 |
const axios = require('axios')
|
5 |
const { connectToMongoDB } = require('./database');
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
app.get('/', (req, res) => {
|
8 |
res.redirect('https://t.me/RendyProjects');
|
9 |
});
|
@@ -95,6 +113,4 @@ app.get('/api/gpt-old', async (req, res) => {
|
|
95 |
});
|
96 |
|
97 |
|
98 |
-
|
99 |
-
console.log(`Example app listening on port ${port}`)
|
100 |
-
})
|
|
|
4 |
const axios = require('axios')
|
5 |
const { connectToMongoDB } = require('./database');
|
6 |
|
7 |
+
const startup = async () => {
|
8 |
+
try {
|
9 |
+
console.log("Starting application...");
|
10 |
+
await connectToMongoDB();
|
11 |
+
console.log("MongoDB connected successfully.");
|
12 |
+
} catch (error) {
|
13 |
+
console.error("Error during startup:", error.message);
|
14 |
+
process.exit(1);
|
15 |
+
}
|
16 |
+
};
|
17 |
+
|
18 |
+
const startServer = async () => {
|
19 |
+
await startup();
|
20 |
+
app.listen(port, () => {
|
21 |
+
console.log(`Server running on http://localhost:${PORT}`);
|
22 |
+
});
|
23 |
+
};
|
24 |
+
|
25 |
app.get('/', (req, res) => {
|
26 |
res.redirect('https://t.me/RendyProjects');
|
27 |
});
|
|
|
113 |
});
|
114 |
|
115 |
|
116 |
+
startServer();
|
|
|
|