From 8dd6aa3382183b71880c88792160086acc020330 Mon Sep 17 00:00:00 2001 From: mat-ng Date: Wed, 20 Mar 2024 20:24:06 -0400 Subject: [PATCH] reorganize directory --- .../typescript/{utilities => }/delegation-algorithm/README.md | 2 +- .../delegation-algorithm => delegation-algorithm/src}/index.ts | 0 .../src}/roundRobinPairs.ts | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename backend/typescript/{utilities => }/delegation-algorithm/README.md (84%) rename backend/typescript/{utilities/delegation-algorithm => delegation-algorithm/src}/index.ts (100%) rename backend/typescript/{utilities/delegation-algorithm => delegation-algorithm/src}/roundRobinPairs.ts (100%) diff --git a/backend/typescript/utilities/delegation-algorithm/README.md b/backend/typescript/delegation-algorithm/README.md similarity index 84% rename from backend/typescript/utilities/delegation-algorithm/README.md rename to backend/typescript/delegation-algorithm/README.md index a867387..b2974a1 100644 --- a/backend/typescript/utilities/delegation-algorithm/README.md +++ b/backend/typescript/delegation-algorithm/README.md @@ -11,7 +11,7 @@ npm install -g ts-node Run the algorithm: ``` -ts-node utilities/delegation-algorithm/index.ts +ts-node /delegation-algorithm/src/index.ts ``` The `applicationdashboardtable` should be populated with the review data. \ No newline at end of file diff --git a/backend/typescript/utilities/delegation-algorithm/index.ts b/backend/typescript/delegation-algorithm/src/index.ts similarity index 100% rename from backend/typescript/utilities/delegation-algorithm/index.ts rename to backend/typescript/delegation-algorithm/src/index.ts diff --git a/backend/typescript/utilities/delegation-algorithm/roundRobinPairs.ts b/backend/typescript/delegation-algorithm/src/roundRobinPairs.ts similarity index 100% rename from backend/typescript/utilities/delegation-algorithm/roundRobinPairs.ts rename to backend/typescript/delegation-algorithm/src/roundRobinPairs.ts