Yes, you will need to create at least one more subdomain. Because `wendys.ditech.website` is intended to host the **Bakery Storefront (Next.js)**, you should not host the **Hub (Laravel API)** on this exact same address. They are two separate applications that need to live on different domains (or subdomains) to avoid conflicts. Here is the recommended subdomain mapping for your setup: ### Recommended Subdomain Mapping 1. **`hub.ditech.website`** (or `api.ditech.website`): For the **Laravel Hub API Backend** (the ZIP file you just uploaded). 2. **`wendys.ditech.website`**: For the **Bakery Storefront (Next.js)**. 3. **`fashion.ditech.website`** (Optional): For the **Fashion Storefront (Next.js)**, if you deploy it later. --- ### Your Next Recommended Actions #### Step 1: Create the API Subdomain in cPanel 1. Log in to cPanel. 2. Go to **Domains** (or **Subdomains**). 3. Create a new subdomain named **`hub.ditech.website`**. 4. Set its **Document Root** to point to the `public` directory of where you extract the Hub files (e.g., `/home/username/hub.ditech.website/public`). #### Step 2: Move the ZIP File 1. In the cPanel File Manager, move the `hub_cpanel_deploy.zip` file out of the `wendys.ditech.website` folder and into the new `hub.ditech.website` folder. 2. Extract the ZIP file there. #### Step 3: Run Database Migrations Once the ZIP is extracted in the `hub.ditech.website` folder and your `.env` is configured with database credentials, you need to run the migrations. Let me know if you would like to run the migrations using the **cPanel Terminal** (Method A) or if we should add the **Programmatic Web Route** (Method B) to run them via your browser! The implementation plan has been approved, and I have created a task.md file to track your progress. Because these actions require logging into your cPanel host, you will need to perform these steps directly on your server: Create the hub.ditech.website subdomain and point its Document Root to the public/ directory (e.g. /home/username/hub.ditech.website/public). Move the hub_cpanel_deploy.zip file from the wendys.ditech.website folder to your new hub.ditech.website folder, and extract it. Rename .env.example to .env and configure your MySQL database connection details. Once you have completed these first three steps, let me know! We will then proceed to running the database migrations (either via SSH Terminal or the Programmatic Web Route).