# CRM Application A full-stack CRM application with real-time updates. ## Tech Stack - Backend: FastAPI, SQLAlchemy, Redis, WebSockets - Frontend: React, TypeScript ## Deployment ### Backend Deploy to Render/Railway/Heroku using the provided Procfile. ### Frontend Deploy to Vercel/Netlify from the `frontend` directory. ## Setup 1. Install backend dependencies: ```bash pip install -r requirements.txt ``` 2. Install frontend dependencies: ```bash cd frontend npm install ``` 3. Configure environment variables (see .env.example) 4. Run backend: ```bash uvicorn main:app --reload ``` 5. Run frontend: ```bash cd frontend npm start ``` # CRM