{"id":48802227,"url":"https://github.com/ojassingh/finance-dashboard","last_synced_at":"2026-04-14T03:33:23.630Z","repository":{"id":182940676,"uuid":"669334522","full_name":"ojassingh/finance-dashboard","owner":"ojassingh","description":"A financial analytics app made with the Alpha Vantage API, OpenAI API, and Next.js","archived":false,"fork":false,"pushed_at":"2023-09-25T17:53:59.000Z","size":172,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2023-12-16T16:13:13.315Z","etag":null,"topics":["alphavantage","chatgpt","d3js","nextjs","openai","plotly","react","spotify","vercel"],"latest_commit_sha":null,"homepage":"https://trading-dashboard-ojassingh.vercel.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ojassingh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-22T00:46:27.000Z","updated_at":"2023-09-18T22:58:20.000Z","dependencies_parsed_at":"2023-09-19T04:09:50.198Z","dependency_job_id":null,"html_url":"https://github.com/ojassingh/finance-dashboard","commit_stats":{"total_commits":43,"total_committers":2,"mean_commits":21.5,"dds":"0.13953488372093026","last_synced_commit":"eb012fc5768ac8f5b93fcb9b5c946130829f4500"},"previous_names":["ojassingh/spotify-analytics","ojassingh/trading-dashboard","ojassingh/finance-dashboard"],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/ojassingh/finance-dashboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ojassingh%2Ffinance-dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ojassingh%2Ffinance-dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ojassingh%2Ffinance-dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ojassingh%2Ffinance-dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ojassingh","download_url":"https://codeload.github.com/ojassingh/finance-dashboard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ojassingh%2Ffinance-dashboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31781292,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alphavantage","chatgpt","d3js","nextjs","openai","plotly","react","spotify","vercel"],"created_at":"2026-04-14T03:33:23.566Z","updated_at":"2026-04-14T03:33:23.621Z","avatar_url":"https://github.com/ojassingh.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Finance Dashboard with Next.js, TypeScript, Alpha Vantage, Newsdata.io, MySQL, Prisma, and Docker\n## Overview\nThis is a finance dashboard application that allows users to fetch stock data and read news articles for any stock ticker. It is built using Next.js and TypeScript for the frontend, Alpha Vantage for stock data, Newsdata.io for news articles, MySQL for user information storage, Prisma as the ORM, and Docker to run a MySQL container locally.\n\n\u003cimg width=\"1467\" alt=\"Screenshot 2023-09-04 at 6 55 29 PM\" src=\"https://github.com/ojassingh/trading-dashboard/assets/64021709/406d27fc-97e3-49d6-982e-b1c613c8adaf\"\u003e\n\n\n## Features\n-  Stock Data: Fetch real-time stock data for any ticker symbol.\n-  News Articles: Retrieve the latest news articles related to a selected stock.\n-  User Accounts: Store user information securely using MySQL and Prisma.\n\n## Prerequisites\nBefore running the application, ensure you have the following installed:\n- Node.js and npm: Make sure you have Node.js and npm installed. You can download them from nodejs.org.\n- Docker: Install Docker to run the MySQL container locally. You can get it from docker.com.\n\n## Getting Started\n\n1. Clone the repository:\nCopy code\n```bash\ngit clone https://github.com/yourusername/finance-dashboard.git\n```\nNavigate to the project directory:\n2. Copy code\n```bash\ncd finance-dashboard\nInstall project dependencies:\n```\n\n3. Copy code\n```bash\nnpm install\n```\n\n4. Set up environment variables:\n\nCreate a .env.local file in the project root and configure the following environment variables:\n\n```bash\n# Alpha Vantage API Key (Get your key at https://www.alphavantage.co/)\nALPHA_VANTAGE_API_KEY=your_api_key_here\n\n# Newsdata.io API Key (Get your key at https://newsdata.io/)\nNEWSDATA_API_KEY=your_api_key_here\n\n# MySQL Database Connection URL (e.g., mysql://username:password@host:port/database)\nDATABASE_URL=mysql://your_username:your_password@localhost:3306/finance_dashboard\n```\n\n5. Start the MySQL container:\n\nRun the following Docker command to start a MySQL container with the necessary configurations:\n\n```bash\nCopy code\ndocker run --name finance-mysql -e MYSQL_ROOT_PASSWORD=your_password_here -p 3306:3306 -d mysql:latest\n```\n\n6. Run database migrations:\n```\nbash\nCopy code\nnpx prisma migrate dev\n```\n\n7. Start the application:\n\n```bash\nCopy code\nnpm run dev\n```\n\n8. Open your browser and access the application at http://localhost:3000.\n\n## Usage\n- Stock Data: Enter a stock ticker symbol in the input field and click \"Fetch Data\" to retrieve real-time stock information.\n\n- News Articles: After fetching stock data, scroll down to see the latest news articles related to the selected stock.\n\n- User Accounts: The application allows user registration and login. User information is securely stored in the MySQL database.\n\n\n## Acknowledgments\n- Alpha Vantage (https://www.alphavantage.co/)\n- Newsdata.io (https://newsdata.io/)\n- Next.js (https://nextjs.org/)\n- Prisma (https://www.prisma.io/)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fojassingh%2Ffinance-dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fojassingh%2Ffinance-dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fojassingh%2Ffinance-dashboard/lists"}