Views
No views yet

1# 1. Clone the repository
2git clone https://github.com/nexus-ai/platform.git
3cd nexus-ai-platform
4
5# 2. Copy environment file and edit it
6cp .env.example .env
7# Edit .env with your API keys
8
9# 3. Run the platform
10docker-compose up -dhttp://localhost:3000nexus-ai-platform/
├── .github/
│ └── workflows/ # CI/CD files
│ ├── ci-pipeline.yml
│ └── cd-deploy.yml
├── client/ # Frontend (Next.js)
│ ├── src/
│ │ ├── app/ # App Router
│ │ ├── components/ # Components
│ │ ├── lib/ # Utilities
│ │ └── hooks/ # React Hooks
│ ├── public/ # Static assets
│ └── Dockerfile
├── server/ # Backend (FastAPI)
│ ├── app/
│ │ ├── api/ # Endpoints
│ │ ├── core/ # Core configurations
│ │ ├── models/ # Data models
│ │ ├── services/ # AI services
│ │ └── main.py # Entry point
│ └── Dockerfile
├── infrastructure/ # Infra configurations
│ ├── docker-compose.yml
│ └── nginx.conf
├── docs/ # Documentation
└── README.md