-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
38 lines (30 loc) · 1.23 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
var express = require('express');
var path = require('path');
var cors = require('cors');
var cookieParser = require('cookie-parser');
var logger = require('morgan');
var indexRouter = require('./routes/index');
var usersRouter = require('./routes/users');
var app = express({
origin: 'http://localhost:5173/', // domain that can access the API
methods: 'GET,HEAD,PUT,PATCH,POST,DELETE', // allowed methods; others will be blocked
credentials: false, // indicates whether the request can include user credentials like cookies and HTTP auth
optionsSuccessStatus: 200, // status code for successful OPTIONS requests (used by browsers during 'preflight')
});
app.use(express.json({limit: '50mb'}));
app.use(express.urlencoded({limit: '50mb'}));
var port = 9000;
app.listen(port, function () {
console.log('App is running on http://localhost:' + port);
});
app.use(cors());
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'interface/dist')));
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/smart-garden-dev');
app.use('/', indexRouter);
app.use('/users', usersRouter);
module.exports = app;