WIP Items module.

This commit is contained in:
Ahmed Bouhuolia
2019-09-03 02:07:28 +02:00
parent cb8c294d74
commit 70809cb05c
142 changed files with 12674 additions and 64 deletions

16
server/src/app.js Normal file
View File

@@ -0,0 +1,16 @@
import express from 'express';
import boom from 'express-boom';
import '../config';
import routes from '@/http';
const app = express();
// Express configuration
app.set('port', process.env.PORT || 3000);
app.use(boom());
app.use(express.json());
routes(app);
export default app;