-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
44 lines (34 loc) · 1.45 KB
/
index.js
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
import express from 'express';
import 'dotenv/config';
import path from 'path';
import {fileURLToPath} from 'url';
import { animeRoutes, genreRoutes, episodeRoutes, scheduleRoutes } from './routes/Routes.js';
import {fetchAllAnimeData} from './services/animeService.js';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const app = express();
const port = process.env.PORT || 3000;
app.set('view engine', 'ejs');
app.use(express.urlencoded({ extended: true }));
// Serve static files from the "public" directory
app.use(express.static(path.join(__dirname, 'public')));
// Serve Bootstrap files from node_modules
app.use('/css', express.static(path.join(__dirname, 'node_modules/bootstrap/dist/css')));
app.use('/js', express.static(path.join(__dirname, 'node_modules/bootstrap/dist/js')));
app.use('/js', express.static(path.join(__dirname, 'node_modules/@popperjs/core/dist/umd')));
// Fetch all anime data from API and store in memory
const fetchAndStoreAnimeData = async () => {
app.locals.allAnimeData = await fetchAllAnimeData();
};
// Fetch data on server start
(async () => {
await fetchAndStoreAnimeData();
})();
// Use routes
app.use('/', animeRoutes, genreRoutes, episodeRoutes, scheduleRoutes);
// Start the server
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});
// Periodically update all anime data (every 60 minutes)
setInterval(fetchAndStoreAnimeData, 60 * 60 * 1000);