{"id":25933622,"url":"https://github.com/akshatg5/finance-cs50","last_synced_at":"2026-04-08T20:04:59.305Z","repository":{"id":260086170,"uuid":"862880477","full_name":"akshatg5/Finance-CS50","owner":"akshatg5","description":"The CS50-Finance project, backend for the LiteKite project","archived":false,"fork":false,"pushed_at":"2024-12-30T08:01:07.000Z","size":356,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-15T22:22:50.162Z","etag":null,"topics":["flask","hacktoberfest","postgresql","python","vercel"],"latest_commit_sha":null,"homepage":"https://litekitebackend.vercel.app","language":"Python","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/akshatg5.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-09-25T10:48:06.000Z","updated_at":"2024-12-30T08:01:10.000Z","dependencies_parsed_at":"2025-05-29T00:41:14.086Z","dependency_job_id":"4ab0174e-4704-479b-a2fe-b71d0785a7d9","html_url":"https://github.com/akshatg5/Finance-CS50","commit_stats":null,"previous_names":["akshatg5/finance-cs50"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/akshatg5/Finance-CS50","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akshatg5%2FFinance-CS50","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akshatg5%2FFinance-CS50/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akshatg5%2FFinance-CS50/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akshatg5%2FFinance-CS50/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akshatg5","download_url":"https://codeload.github.com/akshatg5/Finance-CS50/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akshatg5%2FFinance-CS50/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31571609,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["flask","hacktoberfest","postgresql","python","vercel"],"created_at":"2025-03-04T00:54:52.621Z","updated_at":"2026-04-08T20:04:59.285Z","avatar_url":"https://github.com/akshatg5.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stock Portfolio Backend\n\nThis is the backend server for a stock portfolio management application. It provides APIs for user authentication, stock trading, portfolio management, and stock analysis using AI.\n\n## Features\n\n- User registration and authentication\n- Real-time stock quotes\n- Buy and sell stocks\n- View portfolio and transaction history\n- AI-powered stock analysis using Google's Gemini API\n- Database integration for persistent storage\n\n## Technologies Used\n\n- Python 3.8+\n- Flask\n- Google Generative AI (Gemini)\n- PostgreSQL\n\n## Prerequisites\n\nBefore you begin, ensure you have met the following requirements:\n\n- Python 3.8 or higher installed\n- pip (Python package manager)\n- PostgreSQL database\n\n## Setting Up Locally\n\nFollow these steps to set up the project locally:\n\n1. Clone the repository:\n   ```\n   git clone https://github.com/akshatg5/Finance-CS50\n   ```\n\n2. Create a virtual environment (recommended):\n   ```\n   python -m venv venv\n   source venv/bin/activate  # On Windows, use `venv\\Scripts\\activate`\n   ```\n\n3. Install the required dependencies:\n   ```\n   pip install -r requirements.txt\n   ```\n\n4. Set up the environment variables:\n   Create a `.env` file in the root directory with the following content:\n   ```\n   JWT_SECRET=your_jwt_secret_here\n   FINNHUB_API_KEY=your_finnhub_api_key_here\n   DATABASE_URI=your_database_uri_here\n   POLYGON_API_KEY=your_polygon_api_key_here\n   GEMINI_API_KEY=your_gemini_api_key_here\n   ```\n   Replace the placeholder values with your actual API keys and database URI.\n\n5. Initialize the database:\n   ```\n   flask db init\n   flask db migrate\n   flask db upgrade\n   ```\n\n6. Run the application:\n   ```\n   flask --app api/index.py run\n   ```\n\nThe server should now be running on http://127.0.0.1:5000\n\n## Contributing\n\nContributions to the Litekite Backend are welcome. Please follow these steps:\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/featureName`)\n3. Make your changes\n4. Commit your changes (`git commit -m 'feat/fix:Add/fix this feature'`)\n5. Push to the branch (`git push origin feature/featureName`)\n6. Open a Pull Request\n\n\n## Contact\n\nIf you have any questions or feedback, please reach out to [Me](https://x.com/AkshatGirdhar2).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakshatg5%2Ffinance-cs50","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakshatg5%2Ffinance-cs50","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakshatg5%2Ffinance-cs50/lists"}