Alpha Quant là một dự án về phân tích định lượng (quantitative analysis) trong lĩnh vực tài chính.
- backend: FastAPI backend với PostgreSQL và Redis
- frontend: Next.js frontend
- Docker và Docker Compose
- Git
# Clone repository
git clone [repository_url]
cd alpha-quant
# Khởi chạy dự án với Docker Compose
docker-compose up -d- Frontend: http://localhost:3000
- Backend API: http://localhost:8000
- API Documentation: http://localhost:8000/docs
- PostgreSQL: localhost:5432
- Redis: localhost:6379
cd backend
python -m venv env
source env/bin/activate # Trên Windows: env\Scripts\activate
pip install -r requirements.txt
uvicorn main:app --reloadcd frontend
npm install
npm run dev