-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# The project aims to deattach programming part to create Blinks | ||
It allows you to just provide the required information and it generats the Blink for you very simple and intuative | ||
|
||
|
||
# Setting up the project | ||
1. you require a postgres database (can be a docker container) | ||
2. And these environment variables | ||
``` | ||
DATABASE_URL="postgresql://postgres:[email protected]:5432/postgres?schema=public" | ||
AUTH_SECRET="some string here" | ||
AUTH_GOOGLE_ID="Google Oauth ID" | ||
AUTH_GOOGLE_SECRET="Google Oauth Secret" | ||
RPC_URL="solana RPC url , you can het one from https://helius.dev/" | ||
NEXTAUTH_URL=http://localhost:3000 # it can be whatever your domain is running the project | ||
AWS_S3_KEY=Aws s3 key | ||
AWS_S3_SECRET=Aws s3 secret | ||
``` | ||
|
||
RUN: to start development server of the project | ||
``` | ||
npm run dev | ||
``` |