Copying over from WrenchBoradWeb to new repository

This commit is contained in:
2022-05-07 23:20:17 -04:00
commit 6543a2f6c7
18 changed files with 848 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
const swaggerAutogen = require('swagger-autogen')();
const outputFile = './swagger.json';
const endpointsFiles = ['./api/routes.js']
swaggerAutogen(outputFile, endpointsFiles).then(() => {
require('./server.js')
})