Complete guide to installing CognexiaAI ERP platform on your infrastructure
Before installing CognexiaAI ERP, ensure your system meets the following requirements:
Deploy CognexiaAI on AWS, Azure, or Google Cloud with our automated scripts:
# AWS Deployment curl -sSL https://install.cognexiaai.com/aws | bash # Azure Deployment curl -sSL https://install.cognexiaai.com/azure | bash # Google Cloud Deployment curl -sSL https://install.cognexiaai.com/gcp | bash
Pro Tip: Cloud deployment includes automatic scaling, backup, and monitoring setup.
Quick setup using Docker Compose:
git clone https://github.com/cognexiaai/erp-platform.git cd erp-platform
cp .env.example .env # Edit .env with your configuration nano .env
docker-compose up -d # Check status docker-compose ps # View logs docker-compose logs -f
# Install dependencies cd backend npm install # Setup database npm run db:migrate npm run db:seed # Start backend server npm run start:prod
# Install dependencies cd frontend/auth-portal npm install # Build for production npm run build # Start production server npm run start
Verify database credentials in .env file and ensure PostgreSQL/MySQL service is running.
Change the port in configuration or stop conflicting services using: lsof -ti:3000 | xargs kill -9
Delete node_modules and package-lock.json, then run npm install again.