Skip to content

Commit

Permalink
Separated webserver and excel reader services into different directories
Browse files Browse the repository at this point in the history
  • Loading branch information
underdorff18 committed Jun 16, 2023
1 parent 3e7e2de commit c4b6c9a
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion JS/index.js → Webserver/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const express = require('express', '4.17.1');
const fs = require('fs');
dbtools = require('./dbtools');
const Path = require('path');
dbtools = require(Path.join(__dirname, '..', 'ExcelReader', 'dbtools.js'));

const app = express();
const port = 3000;
Expand Down

0 comments on commit c4b6c9a

Please sign in to comment.