Skip to content

Latest commit

History

History
54 lines (38 loc) 路 1.17 KB

File metadata and controls

54 lines (38 loc) 路 1.17 KB

Stellar Insights

Real-time payment analytics for Stellar.

A lean, production-grade stack for measuring and improving cross-border payment reliability.

  • Backend: Rust analytics engine
  • Frontend: Next.js dashboard
  • Contracts: Soroban smart contracts (optional)
  • DB: PostgreSQL

馃敡 Quick start

  1. Start Postgres (example):
docker run --name stellar-postgres -e POSTGRES_PASSWORD=password -e POSTGRES_DB=stellar_insights -p 5432:5432 -d postgres:14
  1. Run backend
cd backend
cp .env.example .env
# set DATABASE_URL, STELLAR_RPC_URL, etc.
cargo run
  1. Run frontend
cd frontend
npm install
npm run dev

馃И Local safety checks (already built)

馃搧 Structure

  • backend/ Rust services
  • frontend/ Next.js dashboard
  • mobile/ React Native mobile app
  • contracts/ Soroban contracts
  • docs/ additional docs

馃搶 Notes

  • History has been cleaned to reduce clone size.
  • Use git lfs for large binaries.
  • For full operational details, see docs/ and module READMEs.