Visit the production site here: Frontend Racers
Users can attempt a suite of frontend leetcode-styled questions where they are given an expected output. Our frontend-code-validation-service (click to view Repo!) built on FastAPI will then process user submitted code and return the validation outcome. Users can track their progress under Submissions.
git clone https://github.com/onebignick/FrontendLeetcode.git
npm i
npm run dev
.env.local
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
POSTGRES_DATABASE=
POSTGRES_HOST=
POSTGRES_PASSWORD=
POSTGRES_PRISMA_URL=
POSTGRES_URL=
POSTGRES_URL_NON_POOLING=
POSTGRES_URL_NO_SSL=
POSTGRES_USER=
# Code Validation Service Endpoint:
NEXT_PUBLIC_FRONTEND_CODE_VALIDATION_SERVICE_API_ENDPOINT=https://frontendcodevalidationservice-cyz3lynf7q-uc.a.run.app/
This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.