{"id":28376145,"url":"https://github.com/ozturkeniss/next-tradingsystem","last_synced_at":"2025-09-07T16:45:11.760Z","repository":{"id":281933560,"uuid":"946921539","full_name":"ozturkeniss/Next-TradingSystem","owner":"ozturkeniss","description":"A sophisticated virtual cryptocurrency trading ecosystem integrated with an advanced analytics dashboard, engineered with Next.js and Prisma, offering seamless portfolio management and real-time market simulation capabilities.","archived":false,"fork":false,"pushed_at":"2025-03-11T22:22:08.000Z","size":104,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-26T10:50:15.262Z","etag":null,"topics":["coingecko-api","nextjs","prisma","prisma-orm","trading-platform"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ozturkeniss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-03-11T22:12:43.000Z","updated_at":"2025-06-15T19:16:50.000Z","dependencies_parsed_at":"2025-03-11T23:34:56.784Z","dependency_job_id":null,"html_url":"https://github.com/ozturkeniss/Next-TradingSystem","commit_stats":null,"previous_names":["kalzimkholodros/next-tradingsystem","ozturkeniss/next-tradingsystem"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ozturkeniss/Next-TradingSystem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FNext-TradingSystem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FNext-TradingSystem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FNext-TradingSystem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FNext-TradingSystem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ozturkeniss","download_url":"https://codeload.github.com/ozturkeniss/Next-TradingSystem/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FNext-TradingSystem/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274065292,"owners_count":25216442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["coingecko-api","nextjs","prisma","prisma-orm","trading-platform"],"created_at":"2025-05-30T00:05:35.549Z","updated_at":"2025-09-07T16:45:11.708Z","avatar_url":"https://github.com/ozturkeniss.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NeonDash - Cryptocurrency Trading Dashboard\n\nA sophisticated virtual cryptocurrency trading ecosystem integrated with an advanced analytics dashboard, engineered with Next.js and Prisma, offering seamless portfolio management and real-time market simulation capabilities.\n\n![Ekran görüntüsü 2025-03-12 005944](https://github.com/user-attachments/assets/cc31edec-d49f-4424-8fa0-53c782a25106)\n\n\n\n## Features\n\n- 🚀 **Modern UI Design**: Sleek neon-themed interface with responsive layouts\n- 📊 **Interactive Charts**: Real-time price tracking with Chart.js integration\n- 💼 **Portfolio Management**: Track your cryptocurrency holdings and performance\n- 🔄 **Live Updates**: Simulated market data with automatic price updates\n- 🔒 **Secure Authentication**: User authentication with data persistence\n- 📱 **Responsive Design**: Fully responsive across all devices\n- ⚡ **Fast Performance**: Built with Next.js for optimal performance\n\n## Tech Stack\n\n- **Frontend Framework**: Next.js 14 with App Router\n- **Styling**: Tailwind CSS\n- **Charts**: Chart.js with react-chartjs-2\n- **State Management**: Zustand\n- **Database**: PostgreSQL with Prisma ORM\n- **Authentication**: NextAuth.js\n- **Type Safety**: TypeScript\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js (v18 or higher)\n- PostgreSQL database\n- npm or yarn package manager\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/kalzimkholodros/Next-TradingSystem.git\ncd neondash\n```\n\n2. Install dependencies:\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Set up environment variables:\n```bash\n# Create a .env file and add the following\nDATABASE_URL=\"postgresql://username:password@localhost:5432/neondash\"\nNEXTAUTH_SECRET=\"your-secret-key\"\nNEXTAUTH_URL=\"http://localhost:3000\"\n```\n\n4. Set up the database:\n```bash\nnpx prisma migrate dev\nnpx prisma generate\n```\n\n5. Seed the database with initial data:\n```bash\nnpx prisma db seed\n```\n\n6. Start the development server:\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\nThe application will be available at `http://localhost:3000`\n\n## Project Structure\n\n```\nneondash/\n├── src/\n│   ├── app/\n│   │   ├── api/           # API routes\n│   │   ├── components/    # Reusable components\n│   │   ├── store/        # Zustand store\n│   │   └── (routes)/     # Page components\n│   ├── prisma/           # Database schema and migrations\n│   └── types/            # TypeScript type definitions\n├── public/              # Static assets\n└── package.json         # Project dependencies\n```\n\n## Features in Detail\n\n### Authentication\n- Secure user registration and login\n- Persistent sessions with NextAuth.js\n- Protected routes and API endpoints\n\n### Portfolio Management\n- Real-time portfolio value tracking\n- Individual coin performance monitoring\n- Transaction history\n- Simulated trading functionality\n\n### Market Data\n- Live price updates for cryptocurrencies\n- 7-day price history charts\n- Top gainers and losers tracking\n- Trending coins analysis\n\n  ![Ekran görüntüsü 2025-03-12 010214](https://github.com/user-attachments/assets/a744a7d3-4145-4a28-85e4-1a2371201296)\n\n\n### User Interface\n- Dark mode with neon accents\n- Responsive grid layouts\n- Interactive charts and tables\n- Loading states and error handling\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Next.js team for the amazing framework\n- Chart.js for the beautiful charts\n- Tailwind CSS for the styling utilities\n- The cryptocurrency community for inspiration\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozturkeniss%2Fnext-tradingsystem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fozturkeniss%2Fnext-tradingsystem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozturkeniss%2Fnext-tradingsystem/lists"}