From 39cb644ac6659f10a909b09298da95e103b449d1 Mon Sep 17 00:00:00 2001 From: LakChe11 Date: Thu, 8 Jan 2026 23:40:08 -0500 Subject: [PATCH] Add author info and API key template --- .env.example | 24 ++++++++++++++++++++++++ package.json | 8 ++++++-- 2 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..cc3ebdd --- /dev/null +++ b/.env.example @@ -0,0 +1,24 @@ +# API Keys Template (Example/Public Format) +# Instructions: +# 1. Copy this file: cp .env.example .env +# 2. Replace example values with YOUR actual keys +# 3. NEVER commit .env to GitHub (it's in .gitignore) + +# OpenAI API +# Get from: https://platform.openai.com/account/api-keys +OPENAI_API_KEY=sk-proj-abc123def456ghi789jkl012 + +# GitHub Personal Access Token +# Get from: https://github.com/settings/tokens +GITHUB_TOKEN=ghp_1234567890abcdefghijklmnopqrstuvwxyz + +# Other Common API Keys (add yours as needed) +# STRIPE_API_KEY=your_stripe_test_key_here +# TWILIO_ACCOUNT_SID=your_twilio_account_sid_here +# TWILIO_AUTH_TOKEN=your_twilio_auth_token_here +# FIREBASE_API_KEY=your_firebase_api_key_here +# SENDGRID_API_KEY=your_sendgrid_api_key_here + +# Scraper Settings (optional) +CRAWL_DELAY=1000 +MAX_PAGES_PER_SITE=10 diff --git a/package.json b/package.json index c378bdc..8d6cc4a 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,12 @@ "test": "mocha" }, "keywords": [], - "author": "", - "license": "ISC", + "author": "Lakshy (https://github.com/LakChe11)", + "repository": { + "type": "git", + "url": "https://github.com/LakChe11/updAPI" + }, + "license": "Apache-2.0", "dependencies": { "cheerio": "^1.0.0", "crawlee": "^3.12.1",