Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
771bdb8
fix: abstract away the shad sidebar
LOTaher Dec 16, 2025
6d83c31
fix: rename connectors
LOTaher Dec 16, 2025
862e075
rename nav component
LOTaher Dec 16, 2025
e27fa31
fix: use updated components
LOTaher Dec 16, 2025
1599f34
fix: move constants in judge0 connector
LOTaher Dec 16, 2025
5e37e4c
feat: included crm in route path and added middleware to the route
LOTaher Dec 16, 2025
a56050b
fix: renamed login to sign in
LOTaher Dec 16, 2025
55e804b
lockfile
LOTaher Dec 16, 2025
7e70911
fix: reorganize components
LOTaher Dec 16, 2025
e3c0215
fix: prettier
LOTaher Dec 16, 2025
2715818
fix: dockerfile fix
LOTaher Dec 16, 2025
24adb27
fix: Dockerfile cleanup
LOTaher Dec 16, 2025
323c07e
fix: lint
LOTaher Dec 16, 2025
e4cd5f4
fix: use judge0 connector in route
LOTaher Dec 16, 2025
1598f7e
fix: lint
LOTaher Dec 16, 2025
bd79fdc
fix: copy changes
LOTaher Dec 16, 2025
6beb2ef
sidebar nav fix
LOTaher Dec 16, 2025
1130e4f
fix: prettier
LOTaher Dec 16, 2025
206a3e4
fix: remove hardcoded hex value
LOTaher Dec 19, 2025
ef95871
fix: login redirect
LOTaher Dec 20, 2025
d05ab1e
fix: add cursor pointer to buttons
LOTaher Dec 20, 2025
2a97c3f
fix: moved actions to specifc route
LOTaher Dec 20, 2025
e9cb0de
fix: toast copy changes
LOTaher Dec 20, 2025
5c67f8f
fix: rename /api/position/ to /api/positions/
LOTaher Dec 29, 2025
a8d6bc0
fix: deprecate /api/candidate and remove service
LOTaher Dec 29, 2025
0559a44
feat: updating schema. removed candidate pool and renamed to application
LOTaher Dec 30, 2025
1feff7f
feat: complete first version of schema reorganization
LOTaher Dec 30, 2025
c185feb
feat: candidate pool -> application
LOTaher Jan 1, 2026
9152f4d
fix: ui changes
LOTaher Jan 1, 2026
0c0e942
fix: rename public and private test case fields
LOTaher Jan 1, 2026
8e2c3d4
fix: copy
LOTaher Jan 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 0 additions & 122 deletions API.md

This file was deleted.

4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ FROM public.ecr.aws/docker/library/node:22-slim
WORKDIR /app
ENV NODE_ENV=production
ENV PORT=3000
# TODO: check if AWS needs this env variable
# ENV HOST=0.0.0.0
ENV HOSTNAME=0.0.0.0
EXPOSE 3000
Expand All @@ -26,8 +25,7 @@ RUN apt-get update -y && apt-get install -y openssl ca-certificates libssl3 && r

COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
# TODO: uncomment when we add public directory
# COPY --from=builder /app/public ./public
COPY --from=builder /app/public ./public

COPY --from=builder /app/prisma ./prisma

Expand Down
Loading