-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
48 lines (42 loc) · 1.28 KB
/
app.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
45
46
47
48
const fastify = require('fastify')({ logger: true });
const fs = require('fs');
const stream = require('stream');
const buildUpConnection = require("./Socket/buildUpConnection");
const connectionIn = require('./Socket/connectionIn');
const FastifyCors = require('@fastify/cors');
const FastifyMultipart = require('@fastify/multipart');
// Registriere CORS
fastify.register(FastifyCors, {
origin: '*', //for development
methods: ['GET', 'POST', 'PUT', 'DELETE'],
allowedHeaders: ['Content-Type', 'Authorization'],
});
fastify.register(FastifyMultipart, {
addToBody: true,
limits: {
fileSize: 10 * 1024 * 1024, // 10 MB (Erhöhe diesen Wert nach Bedarf)
},
});
fastify.register(require('./MinIO/upload'),{
fs: fs,
stream: stream
});
fastify.register(require('./MinIO/delete'));
fastify.register(require('./MinIO/download'));
// 404-Route
fastify.setNotFoundHandler((request, reply) => {
reply.status(404).send({ error: 'Route nicht gefunden' });
});
// Server starten
const start = async () => {
try {
await fastify.listen({ port: 3000, host: '0.0.0.0' });
connectionIn(fastify);
await buildUpConnection();
} catch (err) {
fastify.log.error(err);
process.exit(1);
}
};
start();
module.exports = fastify;