https://github.com/aibtcdev/aibtcdev-frontend
https://github.com/aibtcdev/aibtcdev-frontend
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/aibtcdev/aibtcdev-frontend
- Owner: aibtcdev
- Created: 2024-10-15T20:07:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-25T05:49:15.000Z (over 1 year ago)
- Last Synced: 2024-10-25T12:47:47.020Z (over 1 year ago)
- Language: TypeScript
- Size: 4.19 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AIBTCDEV Frontend
## Prerequisites
- Node.js (recommended version 18+)
- npm
- Backend repository: [aibtcdev-backend](https://github.com/aibtcdev/aibtcdev-backend)
## Getting Started
### 1. Clone the Repository
```bash
git clone https://github.com/aibtcdev/aibtcdev-frontend.git
cd aibtcdev-frontend
```
### 2. Environment Setup
Create a `.env.local` file in the project root and add the following variables:
```
NEXT_PUBLIC_SUPABASE_URL=https://addyourown.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=add_your_anon_key
HIRO_API_KEY=hiro_api_key
NEXT_PUBLIC_API_URL=http://127.0.0.1:8000
NEXT_PUBLIC_STACKS_NETWORK=testnet
```
### 3. Install Dependencies
```bash
npm install
```
### 4. Run Backend
Clone and set up the backend repository:
```bash
git clone https://github.com/aibtcdev/aibtcdev-backend.git
cd aibtcdev-backend
# Follow backend setup instructions
```
### 5. Run Frontend Development Server
```bash
npm run dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.