Dev repository of the site: https://shopcall.ai https://shopcall.ai

Claude 7f9c6548d2 feat: Implement ShopRenter scheduled background sync #5 5 kuukautta sitten
shopcall.ai-main 11b7aae914 feat: Restore ShopRenter integration functionality #5 5 kuukautta sitten
supabase 7f9c6548d2 feat: Implement ShopRenter scheduled background sync #5 5 kuukautta sitten
.gitignore 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
.mcp-gogs.json 2fe5df5003 ref: remove Vercel dependencies and backend directory #4 5 kuukautta sitten
CLAUDE.md 7f9c6548d2 feat: Implement ShopRenter scheduled background sync #5 5 kuukautta sitten
DEPLOYMENT_GUIDE.md 7f9c6548d2 feat: Implement ShopRenter scheduled background sync #5 5 kuukautta sitten
FIX_JWT_ISSUE.md 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
MISSING_FEATURES.md 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
README.md 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
REFACTORING_SUMMARY.md 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
SHOPRENTER.md b0f7af4370 fix: replace hardcoded URLs with environment variables #3 5 kuukautta sitten
TODO.md 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
deploy-functions.sh 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
fix-jwt.sh 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
package.json 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten
shoprenter.docs.html 9f4449040f Initial commit: ShopCall.ai monorepo 5 kuukautta sitten

README.md

ShopCall.ai

AI-powered calling system integrated with e-commerce platforms.

Repository Structure

This is a monorepo containing the following packages:

shopcall/
├── shopcall.ai-main/          # Frontend application (React + Vite + TypeScript)
├── shopcall.ai-backend-main/  # Backend API (Express.js)
├── supabase/                  # Supabase configuration and Edge Functions
├── docs/                      # Documentation files
│   ├── CLAUDE.md             # Development guidelines for AI assistants
│   ├── DEPLOYMENT_GUIDE.md   # Deployment instructions
│   ├── REFACTORING_SUMMARY.md # Code refactoring notes
│   ├── TODO.md               # Project roadmap and tasks
│   └── MISSING_FEATURES.md   # Feature tracking
└── package.json              # Root workspace configuration

Quick Start

Prerequisites

  • Node.js 18+ and npm
  • Supabase account
  • Shopify/WooCommerce API credentials (for integrations)

Installation

Install dependencies for all packages:

# Install Supabase CLI globally or at root
npm install

# Install frontend dependencies
cd shopcall.ai-main
npm install

# Install backend dependencies
cd ../shopcall.ai-backend-main
npm install

Development

Frontend:

cd shopcall.ai-main
npm run dev  # Start dev server on port 8080

Backend:

cd shopcall.ai-backend-main
npm start    # Start Express server

Supabase Functions:

# Deploy all functions
./deploy-functions.sh

# Or deploy individually
npx supabase functions deploy <function-name>

Environment Setup

Create .env files in both frontend and backend directories:

Backend (shopcall.ai-backend-main/.env):

SUPABASE_URL=your_supabase_url
SUPABASE_ANON_KEY=your_anon_key
SHOPIFY_API_KEY=your_shopify_key
SHOPIFY_API_SECRET=your_shopify_secret
EMAIL_USER=your_gmail
EMAIL_PASSWORD=your_gmail_app_password
NODE_ENV=development

Technology Stack

Frontend

  • React 18 with Vite
  • TypeScript
  • Tailwind CSS + shadcn/ui
  • React Router v6
  • React Query
  • React Hook Form + Zod

Backend

  • Express.js v5
  • Supabase (PostgreSQL + Auth)
  • Nodemailer
  • OAuth integrations (Shopify, WooCommerce)

Infrastructure

  • Supabase Edge Functions (Deno)
  • Vercel (hosting)

Documentation

Deployment

Both frontend and backend deploy to Vercel:

See DEPLOYMENT_GUIDE.md for detailed instructions.

License

Proprietary - All rights reserved

Support

For issues or questions, contact the development team.