├── .gitattributes ├── LICENSE ├── README.md ├── client ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── downloads │ │ └── H Income B Credit 140k_5-s.csv │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── robots.txt │ └── uploads │ │ ├── All Time CA Leads Part 1.csv │ │ └── H Income B Credit 140k_5-s.csv ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ ├── FileUpload.js │ │ ├── Message.js │ │ └── Progress.js │ └── index.js └── yarn.lock ├── controllers ├── downloadController.js └── uploadController.js ├── db ├── WiredTiger ├── WiredTiger.lock ├── WiredTiger.turtle ├── WiredTiger.wt ├── WiredTigerHS.wt ├── _mdb_catalog.wt ├── collection-0--4571817343119395377.wt ├── collection-2--4571817343119395377.wt ├── collection-4--4571817343119395377.wt ├── diagnostic.data │ └── metrics.2022-07-20T14-59-11Z-00000 ├── index-1--4571817343119395377.wt ├── index-3--4571817343119395377.wt ├── index-5--4571817343119395377.wt ├── index-6--4571817343119395377.wt ├── journal │ ├── WiredTigerLog.0000000001 │ ├── WiredTigerPreplog.0000000001 │ └── WiredTigerPreplog.0000000002 ├── mongod.lock ├── sizeStorer.wt └── storage.bson ├── models └── model.user.js ├── package.json └── server.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/README.md -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/downloads/H Income B Credit 140k_5-s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/downloads/H Income B Credit 140k_5-s.csv -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/public/uploads/All Time CA Leads Part 1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/uploads/All Time CA Leads Part 1.csv -------------------------------------------------------------------------------- /client/public/uploads/H Income B Credit 140k_5-s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/public/uploads/H Income B Credit 140k_5-s.csv -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/components/FileUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/src/components/FileUpload.js -------------------------------------------------------------------------------- /client/src/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/src/components/Message.js -------------------------------------------------------------------------------- /client/src/components/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/src/components/Progress.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /controllers/downloadController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/controllers/downloadController.js -------------------------------------------------------------------------------- /controllers/uploadController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/controllers/uploadController.js -------------------------------------------------------------------------------- /db/WiredTiger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/WiredTiger -------------------------------------------------------------------------------- /db/WiredTiger.lock: -------------------------------------------------------------------------------- 1 | WiredTiger lock file 2 | -------------------------------------------------------------------------------- /db/WiredTiger.turtle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/WiredTiger.turtle -------------------------------------------------------------------------------- /db/WiredTiger.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/WiredTiger.wt -------------------------------------------------------------------------------- /db/WiredTigerHS.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/WiredTigerHS.wt -------------------------------------------------------------------------------- /db/_mdb_catalog.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/_mdb_catalog.wt -------------------------------------------------------------------------------- /db/collection-0--4571817343119395377.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/collection-0--4571817343119395377.wt -------------------------------------------------------------------------------- /db/collection-2--4571817343119395377.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/collection-2--4571817343119395377.wt -------------------------------------------------------------------------------- /db/collection-4--4571817343119395377.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/collection-4--4571817343119395377.wt -------------------------------------------------------------------------------- /db/diagnostic.data/metrics.2022-07-20T14-59-11Z-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/diagnostic.data/metrics.2022-07-20T14-59-11Z-00000 -------------------------------------------------------------------------------- /db/index-1--4571817343119395377.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/index-1--4571817343119395377.wt -------------------------------------------------------------------------------- /db/index-3--4571817343119395377.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/index-3--4571817343119395377.wt -------------------------------------------------------------------------------- /db/index-5--4571817343119395377.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/index-5--4571817343119395377.wt -------------------------------------------------------------------------------- /db/index-6--4571817343119395377.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/index-6--4571817343119395377.wt -------------------------------------------------------------------------------- /db/journal/WiredTigerLog.0000000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/journal/WiredTigerLog.0000000001 -------------------------------------------------------------------------------- /db/journal/WiredTigerPreplog.0000000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/journal/WiredTigerPreplog.0000000001 -------------------------------------------------------------------------------- /db/journal/WiredTigerPreplog.0000000002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/journal/WiredTigerPreplog.0000000002 -------------------------------------------------------------------------------- /db/mongod.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/sizeStorer.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/sizeStorer.wt -------------------------------------------------------------------------------- /db/storage.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/db/storage.bson -------------------------------------------------------------------------------- /models/model.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/models/model.user.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tccpro/DNC_scrubbing/HEAD/server.js --------------------------------------------------------------------------------