-
Notifications
You must be signed in to change notification settings - Fork 43
Test/mygithub #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Test/mygithub #76
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ## 2 terminals | ||
|
|
||
| # ~ */apps/medusa: | ||
| docker-compose up -d | ||
|
|
||
| # ~ root coffee-pantry-2.0 | ||
| yarn dev | ||
| is my git hub working | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -13,7 +13,7 @@ | |||||
| "medusa" | ||||||
| ], | ||||||
| "scripts": { | ||||||
| "nukedb": "docker compose down -v && docker compose up -d", | ||||||
| "nukedb": "docker compose down -v && docker-compose up -d", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: cat -n apps/medusa/package.json | head -30Repository: lambda-curry/medusa2-starter Length of output: 1690 🏁 Script executed: # Search for Docker-related scripts and requirements
rg "docker compose|docker-compose" --type jsonRepository: lambda-curry/medusa2-starter Length of output: 160 🏁 Script executed: # Check for any Docker version requirements or documentation
find . -type f \( -name "Dockerfile*" -o -name "docker-compose*" -o -name ".dockerignore" \) | head -20Repository: lambda-curry/medusa2-starter Length of output: 187 🏁 Script executed: # Check if there's a .nvmrc, package.json engines field, or other version specs
rg "engines|docker|compose" apps/medusa/package.json -A 2 -B 2Repository: lambda-curry/medusa2-starter Length of output: 314 🏁 Script executed: # Check docker-compose.yaml to see if there are version constraints
cat -n apps/medusa/docker-compose.yaml | head -20Repository: lambda-curry/medusa2-starter Length of output: 602 🏁 Script executed: # Check if there's any CI/CD configuration that might specify Docker version requirements
find . -type f \( -name ".github" -o -name ".gitlab-ci.yml" -o -name "Jenkinsfile" -o -name ".circleci" \) | head -20Repository: lambda-curry/medusa2-starter Length of output: 54 🏁 Script executed: # Search for any documentation about Docker or development setup
find . -type f \( -name "README*" -o -name "SETUP*" -o -name "INSTALL*" -o -name "CONTRIBUTING*" \) | head -20Repository: lambda-curry/medusa2-starter Length of output: 501 🏁 Script executed: # Check main README for Docker/setup requirements
cat README.md | head -80Repository: lambda-curry/medusa2-starter Length of output: 2772 🏁 Script executed: # Check apps/medusa/README.md for Docker/setup requirements
cat apps/medusa/README.md | head -80Repository: lambda-curry/medusa2-starter Length of output: 3411 🏁 Script executed: # Check if there are other Docker Compose commands in package.json files
rg "docker compose|docker-compose" --type json -B 2 -A 2Repository: lambda-curry/medusa2-starter Length of output: 358 🏁 Script executed: # Verify what the docker-compose up -d command does in context
grep -r "docker-compose" apps/medusa/ --include="*.md" --include="*.txt"Repository: lambda-curry/medusa2-starter Length of output: 54 Standardize Docker Compose syntax in the npm script. The 🔧 Fix- "nukedb": "docker compose down -v && docker-compose up -d",
+ "nukedb": "docker compose down -v && docker compose up -d",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "build": "medusa build", | ||||||
| "seed": "medusa exec ./src/scripts/seed.ts", | ||||||
| "start": "medusa start", | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -44,11 +44,11 @@ export const Footer = () => { | |||||||||||||||||||||||||||||||
| <div className="grid sm:grid-cols-2 lg:grid-cols-6 w-full flex-col items-center gap-8 sm:flex-row sm:items-start sm:gap-16"> | ||||||||||||||||||||||||||||||||
| <div className="flex w-full flex-col items-center gap-8 sm:w-auto sm:items-start sm:gap-9 sm:col-span-2 lg:col-span-3"> | ||||||||||||||||||||||||||||||||
| <div className="flex flex-col gap-5"> | ||||||||||||||||||||||||||||||||
| <h4 className="font-bold">Coffee & Community</h4> | ||||||||||||||||||||||||||||||||
| <h4 className="font-bold">Culture & Heritage</h4> | ||||||||||||||||||||||||||||||||
| <p className="text-sm"> | ||||||||||||||||||||||||||||||||
| Barrio Coffee is a specialty coffee roaster and cafe located in East Austin. We offer freshly roasted | ||||||||||||||||||||||||||||||||
| beans with an experienced balance of quality flavors. Come enjoy our custom house-blends and our | ||||||||||||||||||||||||||||||||
| assortment of single origin coffees. | ||||||||||||||||||||||||||||||||
| Levant Pantry offering a curated selection of pantry staples | ||||||||||||||||||||||||||||||||
| including aromatic spices, premium nuts, wholesome grains, delectable desserts, and traditional sweets. | ||||||||||||||||||||||||||||||||
| Each product is carefully chosen to embody the rich heritage and vibrant flavors of the region, inviting you to taste the tradition, naturally yours. | ||||||||||||||||||||||||||||||||
| </p> | ||||||||||||||||||||||||||||||||
|
Comment on lines
+47
to
52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix grammar in the footer copy. “Levant Pantry offering…” is missing a verb. Consider “Levant Pantry offers…” for clean copy. ✍️ Suggested copy fix- Levant Pantry offering a curated selection of pantry staples
+ Levant Pantry offers a curated selection of pantry staples📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||
| <LogoStoreName /> | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ import '@app/styles/global.css'; | |
| import { useRootLoaderData } from './hooks/useRootLoaderData'; | ||
|
|
||
| export const getRootMeta: MetaFunction = ({ data }) => { | ||
| const title = 'Barrio Store'; | ||
| const title = 'Levant Pantry Store'; | ||
| const description = 'Discover our artisan-roasted coffee, crafted with care and delivered to your door.'; | ||
| const ogTitle = title; | ||
|
Comment on lines
21
to
24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Meta description still references coffee. The title is updated to Levant Pantry, but the description still markets artisan-roasted coffee. Consider aligning the description with the pantry/heritage positioning. 📝 Suggested description update- const description = 'Discover our artisan-roasted coffee, crafted with care and delivered to your door.';
+ const description = 'Discover curated pantry staples and regional flavors, crafted with care and delivered to your door.';🤖 Prompt for AI Agents |
||
| const ogDescription = description; | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -22,41 +22,41 @@ export default function IndexRoute() { | |||||||||||||||
| <Hero | ||||||||||||||||
| className="h-[800px] !max-w-full -mt-[calc(var(--mkt-header-height)+3rem)] md:-mt-[calc(var(--mkt-header-height-desktop)+2rem)] pt-[var(--mkt-header-height)] md:pt-[var(--mkt-header-height-desktop)]" | ||||||||||||||||
| content={ | ||||||||||||||||
| <div className="text-center w-full space-y-9"> | ||||||||||||||||
| <h4 className="font-italiana text-2xl">COFFEE & COMMUNITY</h4> | ||||||||||||||||
| <h1 className="text-8xl font-aboreto">BARRIO</h1> | ||||||||||||||||
| <p className="max-w-prose mx-auto text-lg"> | ||||||||||||||||
| Discover our artisan-roasted coffee, crafted with care and delivered to your door. At Barrio, we’re more | ||||||||||||||||
| than a coffee roastery—we’re a neighborhood. | ||||||||||||||||
| <div className="text-left w-full space-y-9"> | ||||||||||||||||
| <h4 className="font-italiana text-2xl">CULTURE & HERITAGE</h4> | ||||||||||||||||
| <h1 className="text-8xl font-aboreto">LEVANT PANTRY</h1> | ||||||||||||||||
| <p className="max-w-prose text-lg"> | ||||||||||||||||
| Explore the essential flavors of the Levant—from aromatic spices to delicious sweets—all hand-selected to bring authentic tradition to your table. | ||||||||||||||||
| </p> | ||||||||||||||||
| </div> | ||||||||||||||||
| } | ||||||||||||||||
| actions={[ | ||||||||||||||||
| { | ||||||||||||||||
| label: 'Discover Our Blends', | ||||||||||||||||
| label: 'Discover Our Pantry', | ||||||||||||||||
| url: '/categories/blends', | ||||||||||||||||
| }, | ||||||||||||||||
| ]} | ||||||||||||||||
| image={{ | ||||||||||||||||
| url: '/assets/images/barrio-banner.png', | ||||||||||||||||
| url: '/assets/images/gemini-banner-Edited.jpg', | ||||||||||||||||
| alt: 'Barrio background', | ||||||||||||||||
|
Comment on lines
39
to
41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update alt text to reflect new branding. 🛠️ Suggested fix- alt: 'Barrio background',
+ alt: 'Levant Pantry hero background',📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||
| }} | ||||||||||||||||
| /> | ||||||||||||||||
|
|
||||||||||||||||
| <Container className="p-14 md:pt-1 lg:pt-24 relative flex flex-col-reverse items-center lg:flex-row"> | ||||||||||||||||
| <div className="md:absolute w-80 md:left-4 md:-top-[240px] lg:left-20 lg:w-[420px]"> | ||||||||||||||||
| <Image | ||||||||||||||||
| {/* <div className="md:absolute w-80 md:left-4 md:-top-[240px] lg:left-20 lg:w-[420px]"> */} | ||||||||||||||||
| {/* <Image | ||||||||||||||||
| src="/assets/images/header-image-1.png" | ||||||||||||||||
| loading="lazy" | ||||||||||||||||
| alt="Barrio background" | ||||||||||||||||
| height={520} | ||||||||||||||||
| width={420} | ||||||||||||||||
| /> | ||||||||||||||||
| </div> | ||||||||||||||||
| /> */} | ||||||||||||||||
| {/* </div> */} | ||||||||||||||||
|
|
||||||||||||||||
| <div className="md:w-full flex flex-col justify-center max-md:items-center"> | ||||||||||||||||
| <div className="w-full flex text-center md:text-left"> | ||||||||||||||||
| <h2 className="mx-auto md:ml-[32%] lg:ml-[37%] xl:ml-[30%] lg:mr-auto text-6xl sm:text-7xl lg:text-8xl xl:text-9xl font-ballet mt-12"> | ||||||||||||||||
| <div className="flex text-left"> | ||||||||||||||||
| {/* <h2 className="mx-auto md:ml-[32%] lg:ml-[50%] xl:ml-[30%] lg:mr-auto text-6xl sm:text-7xl lg:text-8xl xl:text-9xl font-ballet mt-12"> */} | ||||||||||||||||
| <h2 className="mx-auto text-6xl sm:text-7xl lg:text-8xl xl:text-9xl font-ballet mt-12"> | ||||||||||||||||
| Building Community | ||||||||||||||||
| </h2> | ||||||||||||||||
| </div> | ||||||||||||||||
|
|
||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clean up terminal instructions and remove stray text.
“is my git hub working” reads like a test message, and the commands aren’t in code blocks, which makes the instructions easy to misread.
📝 Suggested cleanup
📝 Committable suggestion
🤖 Prompt for AI Agents