├── .dockerignore ├── .eslintrc.js ├── .github ├── archive_page.png ├── ceres_logo_full.png ├── landing_demo.jpg ├── queue_page.png └── workflows │ └── docker-publish.yml ├── .gitignore ├── .prettierrc ├── Dockerfile ├── Inter.otf ├── LICENSE ├── README.md ├── docker-compose.yml ├── nest-cli.json ├── nginx.conf ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── auth │ ├── auth.controller.spec.ts │ ├── auth.controller.ts │ ├── auth.module.ts │ ├── auth.service.spec.ts │ ├── auth.service.ts │ ├── dto │ │ └── auth-credentials.dto.ts │ ├── entities │ │ └── auth.entity.ts │ ├── get-user.decorator.ts │ ├── jwt-payload.interface.ts │ ├── jwt.strategy.ts │ ├── role.decorator.ts │ └── roles.guard.ts ├── channels │ ├── channels.controller.spec.ts │ ├── channels.controller.ts │ ├── channels.module.ts │ ├── channels.repository.ts │ ├── channels.service.spec.ts │ ├── channels.service.ts │ ├── dto │ │ ├── create-channel.dto.ts │ │ ├── internal-create-channel.dto.ts │ │ ├── manual-create-channel.dto.ts │ │ └── update-channel.dto.ts │ └── entities │ │ └── channel.entity.ts ├── config.schema.ts ├── exec │ ├── exec.module.ts │ ├── exec.service.spec.ts │ └── exec.service.ts ├── files │ ├── files.module.ts │ ├── files.service.spec.ts │ └── files.service.ts ├── live │ ├── dto │ │ ├── create-live.dto.ts │ │ └── update-live.dto.ts │ ├── entities │ │ └── live.entity.ts │ ├── live.controller.spec.ts │ ├── live.controller.ts │ ├── live.module.ts │ ├── live.repository.ts │ ├── live.service.spec.ts │ └── live.service.ts ├── main.ts ├── metrics │ ├── metrics.controller.spec.ts │ ├── metrics.controller.ts │ ├── metrics.module.ts │ ├── metrics.service.spec.ts │ └── metrics.service.ts ├── queues │ ├── dto │ │ ├── create-queue.dto.ts │ │ └── update-queue.dto.ts │ ├── entities │ │ └── queue.entity.ts │ ├── queues.controller.spec.ts │ ├── queues.controller.ts │ ├── queues.module.ts │ ├── queues.repository.ts │ ├── queues.service.spec.ts │ └── queues.service.ts ├── twitch │ ├── twitch.controller.spec.ts │ ├── twitch.controller.ts │ ├── twitch.module.ts │ ├── twitch.service.spec.ts │ └── twitch.service.ts ├── users │ ├── dto │ │ ├── create-user.dto.ts │ │ ├── update-user-password.dto.ts │ │ └── update-user.dto.ts │ ├── entities │ │ └── user.entity.ts │ ├── users.controller.spec.ts │ ├── users.controller.ts │ ├── users.module.ts │ ├── users.repository.ts │ ├── users.service.spec.ts │ └── users.service.ts └── vods │ ├── dto │ ├── create-vod.dto.ts │ ├── manual-create-vod.dto.ts │ └── update-vod.dto.ts │ ├── entities │ └── vod.entity.ts │ ├── vods.controller.spec.ts │ ├── vods.controller.ts │ ├── vods.module.ts │ ├── vods.repository.ts │ ├── vods.service.spec.ts │ └── vods.service.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | .github -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/archive_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.github/archive_page.png -------------------------------------------------------------------------------- /.github/ceres_logo_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.github/ceres_logo_full.png -------------------------------------------------------------------------------- /.github/landing_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.github/landing_demo.jpg -------------------------------------------------------------------------------- /.github/queue_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.github/queue_page.png -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/Dockerfile -------------------------------------------------------------------------------- /Inter.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/Inter.otf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/nest-cli.json -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/auth.controller.spec.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/auth.module.ts -------------------------------------------------------------------------------- /src/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/auth.service.ts -------------------------------------------------------------------------------- /src/auth/dto/auth-credentials.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/dto/auth-credentials.dto.ts -------------------------------------------------------------------------------- /src/auth/entities/auth.entity.ts: -------------------------------------------------------------------------------- 1 | export class Auth {} 2 | -------------------------------------------------------------------------------- /src/auth/get-user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/get-user.decorator.ts -------------------------------------------------------------------------------- /src/auth/jwt-payload.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/jwt-payload.interface.ts -------------------------------------------------------------------------------- /src/auth/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/jwt.strategy.ts -------------------------------------------------------------------------------- /src/auth/role.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/role.decorator.ts -------------------------------------------------------------------------------- /src/auth/roles.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/auth/roles.guard.ts -------------------------------------------------------------------------------- /src/channels/channels.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/channels.controller.spec.ts -------------------------------------------------------------------------------- /src/channels/channels.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/channels.controller.ts -------------------------------------------------------------------------------- /src/channels/channels.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/channels.module.ts -------------------------------------------------------------------------------- /src/channels/channels.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/channels.repository.ts -------------------------------------------------------------------------------- /src/channels/channels.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/channels.service.spec.ts -------------------------------------------------------------------------------- /src/channels/channels.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/channels.service.ts -------------------------------------------------------------------------------- /src/channels/dto/create-channel.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/dto/create-channel.dto.ts -------------------------------------------------------------------------------- /src/channels/dto/internal-create-channel.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/dto/internal-create-channel.dto.ts -------------------------------------------------------------------------------- /src/channels/dto/manual-create-channel.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/dto/manual-create-channel.dto.ts -------------------------------------------------------------------------------- /src/channels/dto/update-channel.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/dto/update-channel.dto.ts -------------------------------------------------------------------------------- /src/channels/entities/channel.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/channels/entities/channel.entity.ts -------------------------------------------------------------------------------- /src/config.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/config.schema.ts -------------------------------------------------------------------------------- /src/exec/exec.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/exec/exec.module.ts -------------------------------------------------------------------------------- /src/exec/exec.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/exec/exec.service.spec.ts -------------------------------------------------------------------------------- /src/exec/exec.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/exec/exec.service.ts -------------------------------------------------------------------------------- /src/files/files.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/files/files.module.ts -------------------------------------------------------------------------------- /src/files/files.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/files/files.service.spec.ts -------------------------------------------------------------------------------- /src/files/files.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/files/files.service.ts -------------------------------------------------------------------------------- /src/live/dto/create-live.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/dto/create-live.dto.ts -------------------------------------------------------------------------------- /src/live/dto/update-live.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/dto/update-live.dto.ts -------------------------------------------------------------------------------- /src/live/entities/live.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/entities/live.entity.ts -------------------------------------------------------------------------------- /src/live/live.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/live.controller.spec.ts -------------------------------------------------------------------------------- /src/live/live.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/live.controller.ts -------------------------------------------------------------------------------- /src/live/live.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/live.module.ts -------------------------------------------------------------------------------- /src/live/live.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/live.repository.ts -------------------------------------------------------------------------------- /src/live/live.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/live.service.spec.ts -------------------------------------------------------------------------------- /src/live/live.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/live/live.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/metrics/metrics.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/metrics/metrics.controller.spec.ts -------------------------------------------------------------------------------- /src/metrics/metrics.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/metrics/metrics.controller.ts -------------------------------------------------------------------------------- /src/metrics/metrics.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/metrics/metrics.module.ts -------------------------------------------------------------------------------- /src/metrics/metrics.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/metrics/metrics.service.spec.ts -------------------------------------------------------------------------------- /src/metrics/metrics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/metrics/metrics.service.ts -------------------------------------------------------------------------------- /src/queues/dto/create-queue.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/dto/create-queue.dto.ts -------------------------------------------------------------------------------- /src/queues/dto/update-queue.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/dto/update-queue.dto.ts -------------------------------------------------------------------------------- /src/queues/entities/queue.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/entities/queue.entity.ts -------------------------------------------------------------------------------- /src/queues/queues.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/queues.controller.spec.ts -------------------------------------------------------------------------------- /src/queues/queues.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/queues.controller.ts -------------------------------------------------------------------------------- /src/queues/queues.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/queues.module.ts -------------------------------------------------------------------------------- /src/queues/queues.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/queues.repository.ts -------------------------------------------------------------------------------- /src/queues/queues.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/queues.service.spec.ts -------------------------------------------------------------------------------- /src/queues/queues.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/queues/queues.service.ts -------------------------------------------------------------------------------- /src/twitch/twitch.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/twitch/twitch.controller.spec.ts -------------------------------------------------------------------------------- /src/twitch/twitch.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/twitch/twitch.controller.ts -------------------------------------------------------------------------------- /src/twitch/twitch.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/twitch/twitch.module.ts -------------------------------------------------------------------------------- /src/twitch/twitch.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/twitch/twitch.service.spec.ts -------------------------------------------------------------------------------- /src/twitch/twitch.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/twitch/twitch.service.ts -------------------------------------------------------------------------------- /src/users/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/dto/create-user.dto.ts -------------------------------------------------------------------------------- /src/users/dto/update-user-password.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/dto/update-user-password.dto.ts -------------------------------------------------------------------------------- /src/users/dto/update-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/dto/update-user.dto.ts -------------------------------------------------------------------------------- /src/users/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/entities/user.entity.ts -------------------------------------------------------------------------------- /src/users/users.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/users.controller.spec.ts -------------------------------------------------------------------------------- /src/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/users.controller.ts -------------------------------------------------------------------------------- /src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/users.module.ts -------------------------------------------------------------------------------- /src/users/users.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/users.repository.ts -------------------------------------------------------------------------------- /src/users/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/users.service.spec.ts -------------------------------------------------------------------------------- /src/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/users/users.service.ts -------------------------------------------------------------------------------- /src/vods/dto/create-vod.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/dto/create-vod.dto.ts -------------------------------------------------------------------------------- /src/vods/dto/manual-create-vod.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/dto/manual-create-vod.dto.ts -------------------------------------------------------------------------------- /src/vods/dto/update-vod.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/dto/update-vod.dto.ts -------------------------------------------------------------------------------- /src/vods/entities/vod.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/entities/vod.entity.ts -------------------------------------------------------------------------------- /src/vods/vods.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/vods.controller.spec.ts -------------------------------------------------------------------------------- /src/vods/vods.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/vods.controller.ts -------------------------------------------------------------------------------- /src/vods/vods.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/vods.module.ts -------------------------------------------------------------------------------- /src/vods/vods.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/vods.repository.ts -------------------------------------------------------------------------------- /src/vods/vods.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/vods.service.spec.ts -------------------------------------------------------------------------------- /src/vods/vods.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/src/vods/vods.service.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zibbp/Ceres/HEAD/yarn.lock --------------------------------------------------------------------------------