Course Resources

Search

Search IconIcon to open search

Last updated Unknown

# Pair Program: Appointment Scheduler

# Overview

Your goal is to create a simple appointment scheduler. The application will include a form where users can enter their first and last name along with a meeting date and time. The form will submit this data to a backend server, which will store and return the array of booked appointments.


# Collaboration Setup

# GitHub Repository Setup

  1. One person creates a new repository on GitHub with a README file.

  2. Both partners create a new folder on their local machine and open it in VS Code.

  3. Open the VS Code terminal and run the following command inside the folder:

    1
    
    git clone <repo-url> .
    

# Collaboration Process


# Step-by-Step Implementation

# Step 1: Initialize the Project

# Step 2: Create the Appointment Form

# Step 3: Handle Form Submissions

# Step 4: Create an Admin Route


# Challenges