This repository contains a coding challenge for candidates.
Challenges are organized by numbered folders:
challenges/01-full-stack- Task 01 for Full-Stack Developer candidates.
Candidates will be told which task number they should complete. Please work only on the assigned task folder.
All written communication in this repository must be in English.
- Clone this repository.
- Create a new repository in your own GitHub account (private repository is fine).
- Remove the existing
originremote. - Add your own repository as the new
originremote. - Complete the challenge in your local clone.
- Push your work to your own repository.
- Grant read access to the reviewers.
git clone git@github.com:stroeer/scg-affiliate-coding-challenge.git
cd scg-affiliate-coding-challenge
# Replace origin with your own private repository
git remote remove origin
git remote add origin git@github.com:<your-github-username>/<your-repo-name>.git
# Verify remotes
git remote -v
# Push your branch to your own repository
git push -u origin mainThe only strict requirement is that the review team has read access to the candidate repository.
Please add the reviewer GitHub usernames provided during the process.
- You can keep your candidate repository private.
- Replace the original
originremote with your own repository before pushing. - Use clear commit messages so your solution process is easy to review.