AI-Native Automation + PSA Platform for Mid-Market Enterprises
This is the public-facing website for AIISTECH Automation – an intelligent automation consulting and PSA platform company targeting mid-market enterprises (500–5,000 employees) in healthcare, manufacturing, and BFSI verticals.
- Generate qualified leads (5–10/month target) via assessment sign-ups
- Educate market on intelligent automation (agentic AI + RPA)
- Build thought leadership through blog + case studies
- Showcase platform capabilities and service offerings
- Drive 280% ROI narrative
- Production: AIISTECH.com
- Staging: staging.AIISTECH.com
- Node.js 18.x or higher
- npm 9.x or higher (or yarn/pnpm)
- Git
# Clone repository
git clone https://github.com/AIISTECH/website.git
cd website
# Install dependencies
npm install
# Create .env.local from template
cp .env.example .env.local
# Add required environment variables
# See Configuration section below
# Run development server
npm run dev
# Open browser
# Visit http://localhost:8080See BACKEND_CONNECTION.md for complete setup guide
-
Start the mock backend API:
cd mock-backend npm install # First time only npm start
-
Start the frontend:
npm install # First time only npm run dev -
Login with demo credentials:
- Executive: exec@aiistech.com / password123
- Finance: finance@aiistech.com / password123
- Operations: ops@aiistech.com / password123
- IT: it@aiistech.com / password123
Copy .env.example to .env and configure:
VITE_API_URL=http://localhost:3001/apiThe frontend is now connected to the backend Identity & Access Service:
- ✅ JWT Authentication
- ✅ Multi-tenant support
- ✅ Role-based access control
- ✅ Auto token refresh
- ✅ Protected routes
POST /api/auth/login- User loginPOST /api/auth/refresh- Token refreshGET /api/auth/me- Get current userPOST /api/auth/logout- User logout
- HOW_IT_WORKS.md - Quick summary of frontend-backend integration
- SYSTEM_INTEGRATION_GUIDE.md - Comprehensive technical guide with diagrams
- BACKEND_CONNECTION.md - Backend API setup and testing
- GOOGLE_AI_INTEGRATION.md - Google AI Studio integration status
| Document | Description | Best For |
|---|---|---|
| HOW_IT_WORKS.md | 5-minute overview | Quick understanding |
| SYSTEM_INTEGRATION_GUIDE.md | Complete architecture | Developers |
| BACKEND_CONNECTION.md | API documentation | Testing & Setup |
| PRODUCTION_READINESS.md | Production checklist | DevOps/Deploy |
| TESTING_CHECKLIST.md | Testing guide | QA/Testing |
Current Status: ✅ Development Complete | ✅ HIGH Security Issues Fixed |
Readiness Score: 75/100 (Improved from 65/100)
What's Done:
- ✅ Frontend implementation complete
- ✅ Authentication system working
- ✅ Mock backend functional
- ✅ Documentation comprehensive
- ✅ Production build tested
- ✅ HIGH security vulnerabilities fixed
What's Needed:
- ❌ Replace mock backend with production API
❌ Fix security vulnerabilities (React Router XSS)✅ FIXED- ❌ Security hardening (httpOnly cookies, HTTPS)
- ❌ Deployment configuration
- ❌ Monitoring setup
See PRODUCTION_READINESS.md for complete checklist