Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1007 Bytes

README.md

File metadata and controls

65 lines (42 loc) · 1007 Bytes

PubKey Link

For questions about this project, please join our Discord.

Getting Started

Prerequisites

  • Node v18 or higher
  • Yarn
  • Docker

Installation

Clone the repo and install dependencies:

git clone git@github.com:pubkeyapp/pubkey-link.git
cd pubkey-link
yarn

Environment variables

Copy the .env.example file to .env and fill in the missing values.

cp .env.example .env

Starting the services

You will need to start the database before starting the backend.

yarn dev:services

Pushing the database schema

If you start from scratch, you will need to push the database schema to the database.

yarn prisma db push

Also, after each change to the schema in prisma/schema.prisma, you will need to run the above command again.

Starting the API

yarn dev:api

Starting the web ui

yarn dev:web

Starting the SDK generator

yarn dev:sdk