From fba34fb1ab50c814f5c2e6c83c21af175059cfad Mon Sep 17 00:00:00 2001 From: bholuhacks Date: Sun, 25 Feb 2024 03:55:41 -0500 Subject: [PATCH] chore: add --- .env.sample | 6 ++++++ .gitignore | 1 + README.md | 6 ++---- 3 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .env.sample diff --git a/.env.sample b/.env.sample new file mode 100644 index 0000000..60584a8 --- /dev/null +++ b/.env.sample @@ -0,0 +1,6 @@ +# Frontend Solana RPC +NEXT_PUBLIC_SOLANA_RPC_URL= +# Backend Solana RPC +SOLANA_RPC_URL= +TENSOR_API_KEY= +NEXT_PUBLIC_COLLECTION_SLUG= \ No newline at end of file diff --git a/.gitignore b/.gitignore index 4f912b7..a394775 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ Thumbs.db # ENV .env.local +.env diff --git a/README.md b/README.md index 09176c4..85166b9 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,8 @@ npm install #### Set environment variables in .env ``` -NEXT_PUBLIC_SOLANA_RPC_URL= # Frontend Solana RPC -SOLANA_RPC_URL= # Backend Solana RPC -TENSOR_API_KEY= -NEXT_PUBLIC_COLLECTION_SLUG= +cp .env.sample .env +vim .env ``` #### Start the web app