Skip to content

Commit

Permalink
added price endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
KishiTheMechanic committed Oct 7, 2024
1 parent fda7687 commit af3e73b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .env.local.sample
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
NEXT_PUBLIC_SOLANA_ENDPOINT=https://rpc.validators.solutions/rpc?api-key=<your-api-key>
NEXT_PUBLIC_SOLANA_ENDPOINT=https://rpc.validators.solutions/rpc?api-key=<your-api-key>
# NEXT_PUBLIC_SOLANA_PRICE_ENDPOINT=
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
run: pnpm install

- name: Create .env.local file
run: echo "NEXT_PUBLIC_SOLANA_ENDPOINT=${{ secrets.NEXT_PUBLIC_SOLANA_ENDPOINT }}" > .env.local
run: |
echo "NEXT_PUBLIC_SOLANA_ENDPOINT=${{ secrets.NEXT_PUBLIC_SOLANA_ENDPOINT }}" > .env.local
echo "NEXT_PUBLIC_SOLANA_PRICE_ENDPOINT=${{ secrets.NEXT_PUBLIC_SOLANA_PRICE_ENDPOINT }}" >> .env.local
- name: Deploy to Cloudflare
run: pnpm run deploy
Expand Down

0 comments on commit af3e73b

Please sign in to comment.