This document provides step-by-step instructions to install and run Coin.ai on your local machine.
- Node.js 18.0 or higher
- Go 1.23 or higher
- PostgreSQL 15 or higher
- Git (latest)
- Expo CLI (
npm install -g @expo/cli)
git clone https://github.com/Irtesaam/coin.ai.git
cd coin.aicd backend
go mod download
cp .env.example .env
# Edit .env with your database credentials and secretscreatedb coinai
make migratego run cmd/server/main.go
# or
make devcd ../frontend
npm install
npm run update-ip
npm run devFor more details, see SETUP.md or TROUBLESHOOTING.md.