- Go to: https://www.alphavantage.co/support/#api-key
- Enter your email and click "GET FREE API KEY"
- Copy the API key (format: XXXXXXXXXXXXXXXX)
- Go to: https://finnhub.io/register
- Sign up with your email
- Go to Dashboard and copy your API key (format: xxxxxxxxxxxxxxxxxxxxxx)
Run these commands (replace with your actual keys):
# Store Alpha Vantage API Key
aws secretsmanager create-secret \
--name "portfoliosync/alpha-vantage-api-key" \
--description "Alpha Vantage API Key for PortfolioSync" \
--secret-string "YOUR_ALPHA_VANTAGE_KEY_HERE"
# Store Finnhub API Key
aws secretsmanager create-secret \
--name "portfoliosync/finnhub-api-key" \
--description "Finnhub API Key for PortfolioSync" \
--secret-string "YOUR_FINNHUB_KEY_HERE"The backend will automatically retrieve keys from Secrets Manager securely.