Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/284fdd7a659a3547817bfa30d6170016d3f9940de81a642f8e585dd9a2d9b4bb889cc9967bb872df606cae659df50b52500903f621554e827094e13a907ff0
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

3 lines
185 B
Text

export const ENV_PROFILE = "AWS_PROFILE";
export const DEFAULT_PROFILE = "default";
export const getProfileName = (init) => init.profile || process.env[ENV_PROFILE] || DEFAULT_PROFILE;