Started Seperating the backend from the frontend

This commit is contained in:
subnub
2020-03-13 13:47:31 -04:00
parent aeea06bb4a
commit 37eeb1db5b
49 changed files with 72 additions and 73 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
const mongoose = require("../src/db/mongooseServerUtils");
const mongoose = require("../backend/db/mongooseServerUtils");
const conn = mongoose.connection;
const ObjectID = require('mongodb').ObjectID
const imageChecker = require("../src/utils/imageChecker");
@@ -7,7 +7,7 @@ const prompts = require("prompts");
const getKey = require("../key/getKey");
const getNewKey = require("../key/getNewKey");
const crypto = require("crypto");
const env = require("../src/enviroment/env");
const env = require("../backend/enviroment/env");
const cliProgress = require('cli-progress');
const createTempDirectory = require("./createTempDirectory");