Skip to content

Latest commit

Β 

History

History
77 lines (58 loc) Β· 1.54 KB

File metadata and controls

77 lines (58 loc) Β· 1.54 KB

Alpha Point Suite

A modern Web3 application built with Next.js and ethers.js, powered by Reown AppKit.

πŸš€ Features

  • Next.js 15 with App Router
  • TypeScript support
  • Ethers.js v6 integration
  • Reown AppKit integration
  • Modern React 19
  • ESLint configuration
  • Environment variable support

πŸ“¦ Prerequisites

  • Node.js (Latest LTS version recommended)
  • pnpm package manager

πŸ› οΈ Installation

  1. Clone the repository:
git clone [repository-url]
cd alpha-point-suite
  1. Install dependencies:
pnpm install
  1. Configure environment variables:
    • Go to Reown Cloud and create a new project
    • Copy your Project ID
    • Create a .env file in the root directory
    • Add your Project ID: NEXT_PUBLIC_PROJECT_ID=your_project_id

πŸƒβ€β™‚οΈ Development

Start the development server:

pnpm dev

The application will be available at http://localhost:3000

πŸ—οΈ Build

Build the application for production:

pnpm build

Start the production server:

pnpm start

πŸ“š Project Structure

src/
β”œβ”€β”€ app/          # Next.js app router pages
β”œβ”€β”€ components/   # React components
β”œβ”€β”€ config/       # Configuration files
β”œβ”€β”€ constants/    # Constants and enums
β”œβ”€β”€ context/      # React context providers
└── hooks/        # Custom React hooks

πŸ”§ Available Scripts

  • pnpm dev - Start development server
  • pnpm build - Build for production
  • pnpm start - Start production server
  • pnpm lint - Run ESLint