Exercise Workflow
Use the bundled starter app to complete exercises and submit results.
Required submission flow
- Copy the
exercise-starterdirectory to your own workspace (GitLab repo ). - Initialize a new Git repository in that copied folder.
- 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 mainRun the starter
pnpm install
pnpm devThen implement each exercise in route pages under app/exercises/[exerciseId]/page.tsx.
Last updated on