projects

1 min read

March 3, 2024

Wally
A simple, easy-to-use bitcoin wallet generator.

Introduction

Wally is a simple, easy-to-use bitcoin wallet generator. It is built with Next.js, TypeScript, and TailwindCSS on the frontend, and Python, FastAPI, and Uvicorn on the backend. The app is hosted on Vercel and the API is hosted on an Ubuntu server with Nginx.

Getting Started

Frontend

# Clone the repository
git clone https://github.com/engageintellect/wally.git
# Install dependencies and run the app
cd ai-stock-client && pnpm i && pnpm run dev

Backend

# Clone the repository
git clone https://github.com/engageintellect/btc-walley-generator.git
# Create a virtual environment
python3 -m venv venv
# Activate the virtual environment
source venv/bin/activate
# Install dependencies
pip3 install -r requirements.txt
# Run the app
python3 main.py