Skip to content

Commit c55b01a

Browse files
committed
Add datasets and expand infrastructure for MCP
Added multiple sample datasets to the data/datasets directory. Updated infrastructure Bicep to provision storage, search, and a new MCP container app, including new modules and scripts. Adjusted .gitignore and azure_custom.yaml for new service and environment. Various backend and MCP server files updated for integration with new resources.
2 parents 37bfb69 + 6b97493 commit c55b01a

33 files changed

+45484
-28
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ celerybeat.pid
125125
# Environments
126126
.env
127127
.venv
128+
scriptenv
128129
env/
129130
venv/
130131
ENV/

azure_custom.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ services:
1313
docker:
1414
image: backend
1515
remoteBuild: true
16+
17+
mcp:
18+
project: ./src/mcp_server
19+
language: py
20+
host: containerapp
21+
docker:
22+
image: mcp
23+
remoteBuild: true
1624

1725
frontend:
1826
project: ./src/frontend
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ProductCategory,ContosoAveragePrice,CompetitorAveragePrice
2+
Dresses,120,100
3+
Shoes,100,105
4+
Accessories,60,55
5+
Sportswear,80,85
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ReasonForCancellation,Percentage
2+
Service Dissatisfaction,40
3+
Financial Reasons,3
4+
Competitor Offer,15
5+
Moving to a Non-Service Area,5
6+
Other,37
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Campaign,Opened,Clicked,Unsubscribed
2+
Summer Sale,Yes,Yes,No
3+
New Arrivals,Yes,No,No
4+
Exclusive Member Offers,No,No,No
5+
Personal Styling Invite,No,No,No
6+
Autumn Collection Preview,Yes,Yes,No
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
TotalPointsEarned,PointsRedeemed,CurrentPointBalance,PointsExpiringNextMonth
2+
4800,3600,1200,1200
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Benefit,UsageFrequency
2+
Free Shipping,7
3+
Early Access to Collections,2
4+
Exclusive Discounts,1
5+
Personalized Styling Sessions,0
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Date,IPAddress,Location,SuccessfulLogin
2+
2023-06-20,192.168.1.1,Home Network,Yes
3+
2023-07-22,203.0.113.45,Unknown,No
4+
2023-08-15,198.51.100.23,Office Network,Yes
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Date,IncidentDescription,AffectedOrders
2+
2023-06-15,Inventory system outage,100
3+
2023-07-18,Logistics partner strike,250
4+
2023-08-25,Warehouse flooding due to heavy rain,150
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SurveyID,Date,SatisfactionRating,Comments
2+
O5678,2023-03-16,5,"Loved the summer dress! Fast delivery."
3+
O5970,2023-09-13,4,"Happy with the sportswear. Quick delivery."

0 commit comments

Comments
 (0)