Skip to content

Commit

Permalink
Remove unnecessary config call.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Aug 18, 2023
1 parent 58b0be3 commit 749e898
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export const cosmicdsDB = new Sequelize(dbName, username, password, {
}
});


// Initialize our models with our database connection
initializeModels(cosmicdsDB);
// (async () => {
Expand Down
2 changes: 0 additions & 2 deletions src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ import {
import { CosmicDSSession } from "./models";

import { ParsedQs } from "qs";
import { config } from "dotenv";
import express, { Request, Response as ExpressResponse, NextFunction } from "express";
import { Response } from "express-serve-static-core";
import bodyParser from "body-parser";
Expand All @@ -57,7 +56,6 @@ import { isStudentOption } from "./models/student_options";
import { isNumberArray, isStringArray } from "./utils";

export const app = express();
config();

// TODO: Clean up these type definitions

Expand Down

0 comments on commit 749e898

Please sign in to comment.