├── .dockerignore ├── .eslintrc.cjs ├── .github └── workflows │ └── containerize.yaml ├── .gitignore ├── .npmrc ├── .prettierrc ├── Dockerfile ├── README.md ├── docker-compose.yaml ├── env └── .env-example ├── hooks └── pre-commit ├── package.json ├── prisma ├── migrations │ ├── 20251105120327_synccheckpoints │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── new.svg └── placeholder.png ├── src ├── app.ts ├── authentication.ts ├── env.ts ├── express.ts ├── logger.ts ├── services.ts ├── sync.ts ├── transform.ts ├── types.ts └── util.ts ├── sync-production.sh ├── tsconfig.json ├── types ├── connect-sqlite3.d.ts ├── declarations.d.ts ├── oauth.d.ts └── passport-oauth2.d.ts └── views ├── error.ejs ├── index.ejs └── login.ejs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/containerize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/.github/workflows/containerize.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /env/.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/env/.env-example -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/package.json -------------------------------------------------------------------------------- /prisma/migrations/20251105120327_synccheckpoints/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/prisma/migrations/20251105120327_synccheckpoints/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/public/new.svg -------------------------------------------------------------------------------- /public/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/public/placeholder.png -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/authentication.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/express.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/services.ts -------------------------------------------------------------------------------- /src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/sync.ts -------------------------------------------------------------------------------- /src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/transform.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/src/util.ts -------------------------------------------------------------------------------- /sync-production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/sync-production.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/connect-sqlite3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/types/connect-sqlite3.d.ts -------------------------------------------------------------------------------- /types/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/types/declarations.d.ts -------------------------------------------------------------------------------- /types/oauth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/types/oauth.d.ts -------------------------------------------------------------------------------- /types/passport-oauth2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/types/passport-oauth2.d.ts -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codam-coding-college/find-peers/HEAD/views/login.ejs --------------------------------------------------------------------------------