Skip to Content
Exercises00 Getting Started

Exercise Workflow

Use the bundled starter app to complete exercises and submit results.

Required submission flow

  1. Copy the exercise-starter directory to your own workspace (GitLab repo ).
  2. Initialize a new Git repository in that copied folder.
  3. Push your exercise work to your own remote repository.

Commands

cp -R exercise-starter ../my-onboarding-exercises cd ../my-onboarding-exercises git init git add . git commit -m "chore: initialize exercise starter" git branch -M main git remote add origin <your-repo-url> git push -u origin main

Run the starter

pnpm install pnpm dev

Then implement each exercise in route pages under app/exercises/[exerciseId]/page.tsx.

Last updated on