Skip to content

heyverse/hey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Hey Monorepo

Requirements

To get started with the Hey monorepo, ensure the following dependencies are installed on your system:

  • Node.js (v18 or higher) - The backbone of our project.
  • pnpm - Our trusty package manager.
  • Postgres App - Our database of choice.

Installation

This repository uses pnpm workspaces to manage multiple packages within a monorepo structure.

Clone the Repository

git clone git@github.com:heyverse/hey.git

Install NVM and pnpm

If you're on macOS, both can be installed via Homebrew:

brew install nvm pnpm

Install Node.js

Use nvm to install the correct Node.js version:

nvm install

Install Dependencies

Navigate to the root of the repository and install all dependencies using pnpm:

pnpm install

Set Up Environment Variables

Copy the .env.example file to create a new .env file for each package or app that requires environment configuration:

cp .env.example .env

Repeat this process for all relevant packages and applications in the monorepo.

Environment Variables

Below is a brief description of the variables defined in the example environment files.

API (apps/api/.env.example)

  • NEXT_PUBLIC_LENS_NETWORK โ€“ Lens network to use (mainnet, testnet, or staging).
  • DATABASE_URL โ€“ Connection string for the main Postgres database.
  • LENS_DATABASE_URL โ€“ Read-only Postgres connection for Lens data.
  • REDIS_URL โ€“ Redis connection string for caching.
  • PRIVATE_KEY โ€“ Private key used to sign Lens requests.
  • EVER_ACCESS_KEY โ€“ Access key for 4EVERLAND storage.
  • EVER_ACCESS_SECRET โ€“ Secret key for 4EVERLAND storage.
  • SHARED_SECRET โ€“ Token for internal API authorization.
  • OPENROUTER_API_KEY โ€“ API key for OpenRouter AI services.

Web (apps/web/.env.example)

  • VITE_IS_PRODUCTION โ€“ Boolean flag indicating production mode for Vite.
  • NEXT_PUBLIC_LENS_NETWORK โ€“ Lens network used by the web app.

Start the Development Server

To run the application in development mode:

pnpm dev

Build and Test

Build the Application

To compile the application:

pnpm build

Type Check the Project

Run the TypeScript type checker to validate the codebase:

pnpm typecheck

Lint and Format Code

Check code quality and formatting:

pnpm biome:check

Fix linting and formatting issues automatically:

pnpm biome:fix

License

This project is licensed under the AGPL-3.0 license. Please refer to the LICENSE file for full terms and conditions.

๐ŸŒธ