Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pubkeyapp/pubkey-link-v1
- Owner: pubkeyapp
- License: mit
- Created: 2023-08-17T00:23:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-25T05:48:42.000Z (11 months ago)
- Last Synced: 2024-08-01T08:11:10.088Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.43 MB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - 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 (TypeScript)
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
```