├── .dockerignore ├── .github └── workflows │ └── update.yaml ├── .gitignore ├── Dockerfile ├── README.md ├── app.ts ├── data └── repositoryArchive.json ├── package.json ├── resources └── githubUsers.json ├── src ├── config │ └── archiveManagerConfig.ts ├── managers │ └── archiveManager.ts └── types │ └── archiveManager.d.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | /data 2 | /resources -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | 4 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/README.md -------------------------------------------------------------------------------- /app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/app.ts -------------------------------------------------------------------------------- /data/repositoryArchive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/data/repositoryArchive.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/package.json -------------------------------------------------------------------------------- /resources/githubUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/resources/githubUsers.json -------------------------------------------------------------------------------- /src/config/archiveManagerConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/src/config/archiveManagerConfig.ts -------------------------------------------------------------------------------- /src/managers/archiveManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/src/managers/archiveManager.ts -------------------------------------------------------------------------------- /src/types/archiveManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/src/types/archiveManager.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxRbckl/Project-Heimir/HEAD/tsconfig.json --------------------------------------------------------------------------------