Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 24 additions & 16 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy to Staging Environment
on:
push:
branches: [ main ]
workflow_dispatch: # Allows manual trigger button
workflow_dispatch:

jobs:
deploy-staging:
Expand All @@ -21,36 +21,44 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Run Linting (Code Analysis)
# Placeholder for linting logic
run: echo "Linting code analysis..."

- name: Run Unit Tests
# Ensures code is verified before deploying to Staging
- name: Run Tests
run: npm test

- name: Build React App
run: npm run build-react

- name: Deploy Files to Staging Server
- name: Copy Files to Staging Server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.STAGING_EC2_IP }}
username: ubuntu
host: ${{ secrets.HOST_STAGING }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.EC2_SSH_KEY }}
source: "./*"
target: "/home/ubuntu/app"

- name: Start Application on Staging Server
- name: Start Application on Staging
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.STAGING_EC2_IP }}
username: ubuntu
host: ${{ secrets.HOST_STAGING }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.EC2_SSH_KEY }}
script: |
cd /home/ubuntu/app
# Install production dependencies
npm install --production
# Restart the app using PM2 (or start if not running)
pm2 restart all || pm2 start index.js --name "react-node-app"
pm2 save
pm2 save

- name: Send Success Email
if: success()
uses: dawidd6/action-send-mail@v3
with:
server_address: smtp.gmail.com
server_port: 465
username: ${{ secrets.MAIL_USERNAME }}
password: ${{ secrets.MAIL_PASSWORD }}
subject: Deployment to STAGING Successful
body: |
Changes have been merged to main and deployed to Staging.
Access it here: http://${{ secrets.HOST_STAGING }}:3000
to: ${{ secrets.QA_EMAIL }}
from: DevOps Automation
18 changes: 18 additions & 0 deletions carts.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,24 @@ let activeCarts = [
description: "Assorted sizes, 2 cartons",
cost: 295,
imageUrl: "blackberries.jpg"
},
{
title: "Delicious Cookies",
description: "Homemade chocolate chip cookies, 1 dozen",
cost: 450,
imageUrl: "cookies.jpg"
},
{
title: "Organic Blueberries",
description: "Fresh picked, 3 cartons",
cost: 350,
imageUrl: "blackberries.jpg"
},
{
title: "Gourmet Cookie Box",
description: "Assorted flavors, premium selection",
cost: 599,
imageUrl: "cookies.jpg"
}
]
},
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@
},
"devDependencies": {
"supertest": "^6.2.2"
}
},
"proxy": "http://localhost:3001"
}
209 changes: 94 additions & 115 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,194 +1,173 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.App {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
justify-content: center;
min-height: 100vh;
padding: 2rem 1rem;
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}

.app-container {
background: white;
border-radius: 24px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
padding: 40px;
max-width: 900px;
width: 100%;
animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.app-header {
text-align: center;
margin-bottom: 2rem;
width: 100%;
margin-bottom: 30px;
}

.app-header h1 {
color: #ffffff;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-size: 2.5rem;
font-weight: 700;
margin: 0 0 0.5rem 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
letter-spacing: -0.5px;
font-weight: 800;
margin-bottom: 10px;
letter-spacing: -1px;
}

.app-header p {
color: #ffffff;
font-size: 1.2rem;
margin: 0;
opacity: 0.95;
font-weight: 300;
color: #666;
font-size: 1.1rem;
font-weight: 500;
}

.cart-container {
background: #ffffff;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
padding: 2rem;
width: 100%;
margin-bottom: 2rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
.cart-section {
margin-bottom: 30px;
}

.cart-container:hover {
transform: translateY(-2px);
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
.shipping-section {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
border-radius: 16px;
padding: 25px;
margin: 30px 0;
border: 2px solid #e0e6ed;
}

.shipping-container {
background: #ffffff;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
padding: 2rem;
width: 100%;
margin-bottom: 2rem;
.shipping-section h4 {
color: #333;
font-size: 1.2rem;
margin-bottom: 15px;
font-weight: 600;
}

.purchase-button {
width: 100%;
padding: 18px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
padding: 1rem 3rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: 12px;
font-size: 1.2rem;
font-weight: 700;
cursor: pointer;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
text-transform: uppercase;
letter-spacing: 1px;
width: 100%;
max-width: 400px;
margin: 0 auto;
display: block;
}

.purchase-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.purchase-button:active {
transform: translateY(0);
box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.cart-items-list {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 1rem;
}

.cart-summary {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border-radius: 12px;
padding: 1.5rem;
margin-top: 2rem;
border: 1px solid rgba(0, 0, 0, 0.05);
background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
border-radius: 16px;
padding: 25px;
margin-top: 20px;
border: 2px solid #e0e4ff;
}

.cart-summary p {
margin: 0.75rem 0;
font-size: 1rem;
color: #333;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
color: #444;
font-size: 1.05rem;
}

.cart-summary hr {
border: none;
border-top: 2px solid rgba(102, 126, 234, 0.3);
margin: 1rem 0;
border-top: 2px solid #d0d5ff;
margin: 15px 0;
}

.cart-summary .order-total {
font-size: 1.5rem;
.cart-summary p:last-child {
font-size: 1.4rem;
font-weight: 700;
color: #667eea;
margin-top: 1rem;
padding-top: 1rem;
border-top: 2px solid rgba(102, 126, 234, 0.3);
margin-top: 10px;
}

.cart-title {
color: #333;
font-size: 2rem;
font-weight: 700;
margin: 0 0 1.5rem 0;
padding-bottom: 1rem;
border-bottom: 3px solid #667eea;
.cart-items-list {
list-style-type: none;
padding: 0;
margin: 0;
}

.shipping-title {
color: #333;
font-size: 1.5rem;
font-weight: 600;
margin: 0 0 1.5rem 0;
.cart-items-list li {
margin-bottom: 15px;
}

.loading-text,
.error-text {
.loading-message, .error-message {
text-align: center;
padding: 2rem;
color: #333;
padding: 40px;
font-size: 1.2rem;
color: #666;
}

.error-text {
.error-message {
color: #e74c3c;
background: #ffeaea;
border-radius: 8px;
border-left: 4px solid #e74c3c;
}

.shipping-option-label {
display: flex;
align-items: center;
padding: 1rem;
border-radius: 8px;
border: 2px solid #e0e0e0;
transition: all 0.3s ease;
cursor: pointer;
}

.shipping-option-label:hover {
border-color: #667eea;
background-color: #f8f9ff;
font-weight: 600;
}

@media (max-width: 768px) {
.App {
padding: 1rem 0.5rem;
.app-container {
padding: 25px;
}

.app-header h1 {
font-size: 2rem;
}

.cart-container,
.shipping-container {
padding: 1.5rem;
}


.purchase-button {
padding: 0.875rem 2rem;
padding: 15px;
font-size: 1rem;
}
}
Loading