Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 901 Bytes

File metadata and controls

55 lines (43 loc) · 901 Bytes

Coin.ai Installation Guide

This document provides step-by-step instructions to install and run Coin.ai on your local machine.


Requirements

  • Node.js 18.0 or higher
  • Go 1.23 or higher
  • PostgreSQL 15 or higher
  • Git (latest)
  • Expo CLI (npm install -g @expo/cli)

Installation Steps

1. Clone the Repository

git clone https://github.com/Irtesaam/coin.ai.git
cd coin.ai

2. Backend Installation

cd backend
go mod download
cp .env.example .env
# Edit .env with your database credentials and secrets

3. Database Migration

createdb coinai
make migrate

4. Start Backend Server

go run cmd/server/main.go
# or
make dev

5. Frontend Installation

cd ../frontend
npm install
npm run update-ip
npm run dev

For more details, see SETUP.md or TROUBLESHOOTING.md.