Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pubkeyapp/pubkey-link-v1

PubKey Link is the first Solana Discord bot that supports cNFTs. Free and open source. **DEPRECATED** Check https://github.com/pubkeyapp/pubkey-link
https://github.com/pubkeyapp/pubkey-link-v1

Last synced: about 2 months ago
JSON representation

PubKey Link is the first Solana Discord bot that supports cNFTs. Free and open source. **DEPRECATED** Check https://github.com/pubkeyapp/pubkey-link

Awesome Lists containing this project

README

        

# PubKey Link

For questions about this project, please join our [Discord](https://discord.gg/XxuZQeDPNf).

## Getting Started

### Prerequisites

- Node v18 or higher
- Yarn
- Docker

### Installation

Clone the repo and install dependencies:

```bash
git clone [email protected]:pubkeyapp/pubkey-link.git
cd pubkey-link
yarn
```

### Environment variables

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

```bash
cp .env.example .env
```

### Starting the services

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

```bash
yarn dev:services
```

### Pushing the database schema

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

```bash
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

```bash
yarn dev:api
```

### Starting the web ui

```bash
yarn dev:web
```

### Starting the SDK generator

```bash
yarn dev:sdk
```