Skip to main content

Tech Lead/Developer Challenge

Tech Lead/Developer Challenge

Overview

This challenge is designed to provide an accurate representation of the day-to-day challenges faced by developers at Blueprint. We aim to assess your software engineering skills, problem-solving abilities, and how effectively you can contribute to a high-performance software team. Developing software collaboratively presents unique challenges, such as maintaining a consistent codebase and ensuring seamless integration of changes when multiple developers work on similar features. This challenge will evaluate how well you navigate these challenges while adhering to best practices in software development.

Modern software applications are typically divided into a frontend and a backend. In this challenge, you will contribute to a project the Tech Team has been actively developing over the past year. Our tech stack consists of:

  • Frontend: React
  • Backend: Spring Boot + PostgreSQL

You will be expected to work within this stack and follow industry best practices for software development.

Blueprint Admin

As Blueprint continues to grow, so does our need for efficient resource management. The Blueprint Admin platform aims to provide a comprehensive overview of the organization's current state. Through this dashboard, the Executive Board (E-board) and Tech Leads will be able to:

  • Create and manage events
  • Oversee AWS resources
  • Track attendance
  • Manage the organization's budget

Challenge

You must choose one of the issues listed below and implement a solution.

Frontend Issues (Repository)

Backend Issues (Repository)


How to Contribute

Follow these steps to fork the repository, make changes, and submit a Pull Request (PR).

Fork the Repository

  1. Navigate to the repository you want to contribute to:
  2. Click on the "Fork" button in the top-right corner.
  3. This creates a copy of the repository in your GitHub account.

Clone the Forked Repository

After forking, clone the repository to your local machine:

git clone https://github.com/stevensblueprint/blueprint_admin.git

or for backend:

git clone https://github.com/stevensblueprint/blueprint_admin_backend.git

Set Up the Development Environment

Frontend

  1. Install dependencies:
    npm install
  2. Start the development server:

    npm start

Backend

  1. Install dependencies using Maven:
    mvn install
  2. Run the application:

    mvn spring-boot:run

Create a New Branch

Before making changes, create a new branch:

git checkout -b fix-issue-XX

Replace XX with the issue number.

Implement Your Solution

  • Carefully read the issue description and implement the required feature or fix.
  • Follow the existing code style and conventions.
  • Write tests where applicable.

Commit Your Changes

After making your changes, commit them:

git add .

Push your branch to GitHub:

git push origin fix-issue-XX

Submit a Pull Request

  1. Go to the original repository (Blueprint Admin or Backend).
  2. Click "Compare & pull request".
  3. Provide a clear PR description:
    • Reference the issue number.
    • Describe your changes.
    • Mention any tests you wrote.
  4. Click "Create pull request".

Submission Checklist

  • Forked the repository
  • Cloned the repository
  • Set up the development environment
  • Created a new branch
  • Implemented the fix/feature
  • Committed and pushed changes
  • Submitted a pull request