From 05fdc7aa3fb6a5f54e42db167c3f2f0ce2c0bea3 Mon Sep 17 00:00:00 2001 From: Hoid Date: Thu, 12 Feb 2026 19:53:18 +0000 Subject: [PATCH] Move Finnhub key to global services.env --- bin/stonks | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/stonks b/bin/stonks index c32e01a..bac4d22 100755 --- a/bin/stonks +++ b/bin/stonks @@ -18,8 +18,8 @@ const https = require('https'); const fs = require('fs'); const path = require('path'); -// Load API key -const envPath = path.join(__dirname, '..', '.credentials', 'finnhub.env'); +// Load API key from global services.env +const envPath = path.join(__dirname, '..', '.credentials', 'services.env'); let API_KEY = ''; try { const env = fs.readFileSync(envPath, 'utf8');