{"id":26391532,"url":"https://github.com/royaals/payzen-wallet","last_synced_at":"2026-01-28T16:03:44.456Z","repository":{"id":236451521,"uuid":"792638584","full_name":"royaals/Payzen-wallet","owner":"royaals","description":"PayZen is a comprehensive financial application that allows users to add money to wallet and perform peer-to-peer transactions.","archived":false,"fork":false,"pushed_at":"2024-10-17T14:24:39.000Z","size":2008,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-03T23:34:48.277Z","etag":null,"topics":["ci-cd","jest","kubernetes","monorepo","newrelic","next-auth","nextjs14","postgresql","prisma","testing","turborepo","tyepscript"],"latest_commit_sha":null,"homepage":"http://payzen.devprojects.world","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/royaals.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":".github/CODE_OF_CONDUCT.md","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-04-27T06:18:11.000Z","updated_at":"2024-12-08T14:58:26.000Z","dependencies_parsed_at":"2024-04-30T19:38:28.627Z","dependency_job_id":"587db9a1-3a41-49e6-b575-38ab8e4fb945","html_url":"https://github.com/royaals/Payzen-wallet","commit_stats":null,"previous_names":["royaals/payzen-wallet"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/royaals/Payzen-wallet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaals%2FPayzen-wallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaals%2FPayzen-wallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaals%2FPayzen-wallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaals%2FPayzen-wallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/royaals","download_url":"https://codeload.github.com/royaals/Payzen-wallet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaals%2FPayzen-wallet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846767,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"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":["ci-cd","jest","kubernetes","monorepo","newrelic","next-auth","nextjs14","postgresql","prisma","testing","turborepo","tyepscript"],"created_at":"2025-03-17T10:20:26.001Z","updated_at":"2026-01-28T16:03:44.289Z","avatar_url":"https://github.com/royaals.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PayZen\r\n\r\nPayZen is a comprehensive financial application that allows users to add money to wallet and perform peer-to-peer transactions.\r\n\r\n## Features\r\n\r\n- **Peer-to-Peer Transactions**: The application supports direct transactions between users, making it easy to send and receive money.\r\n- **Transaction History**: Users can view their transaction history, providing a clear record of all their financial activities.\r\n- **User Authentication**: The application supports user sign-up/sign-in via email or social media accounts.\r\n- **Profile Management**: This includes user onboarding and the ability for users to update their profiles.\r\n\r\n## Technologies Used\r\n\r\n- Next.js\r\n- TypeScript\r\n- Prisma\r\n- NextAuth\r\n- Turborepo\r\n- PostgreSQL\r\n- Node.js\r\n- Express.js\r\n- Nginx (Reverse Proxy)\r\n- Docker\r\n- jest\r\n- Docker\r\n- Kubernetes\r\n- AWS\r\n- New Relic\r\n\r\n## Development Setup\r\n\r\n1. Clone the repository:\r\n\r\n   ```bash\r\n   git clone https://github.com/royaals/Payzen-wallet.git\r\n   ```\r\n\r\n2. Install the dependencies:\r\n   ```bash\r\n   npm install\r\n   ```\r\n3. Navigate to the DB directory:\r\n\r\n   ```bash\r\n    cd packages/db\r\n   ```\r\n\r\n   - Rename `.env.example` to `.env` in the `packages/db` and update the following values:\r\n\r\n   - `DATABASE_URL`: This should be your PostgreSQL database URL. For example, if you're using Docker, it would look something like this: `postgresql://postgres:yourpassword@localhost:5432/postgres`. If you're using a PostgreSQL provider like Neon.tech, Supabase, Aiven, etc., use the URL they provide.\r\n\r\n4. Run Prisma migrations in the `packages/db`. This command will apply the database schema changes:\r\n\r\n   ```bash\r\n   npx prisma migrate dev --name init\r\n   ```\r\n\r\n5. Generate the Prisma client in the `packages/db`. This command will generate the Prisma client code:\r\n   ```bash\r\n   npx prisma generate\r\n   ```\r\n6. Start the development server:\r\n   ```bash\r\n   npm run dev\r\n   ```\r\n\r\n### Using Docker for Local Development\r\n\r\n1. Clone the repository:\r\n\r\n   ```bash\r\n   git clone https://github.com/royaals/Payzen-wallet.git\r\n   ```\r\n\r\n2. Install the dependencies:\r\n   ```bash\r\n   npm install\r\n   ```\r\n3. Copy the frontend Dockerfile:\r\n   ```bash\r\n   cp ./docker/Dockerfile.frontend ./Dockerfile\r\n   ```\r\n4. Build the Docker image:\r\n   ```bash\r\n   docker build -t payzen .\r\n   ```\r\n5. Run the Docker container:\r\n   ```bash\r\n   docker run -p 3000:3000 -e DATABASE_URL=your_database_url payzen\r\n   ```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyaals%2Fpayzen-wallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froyaals%2Fpayzen-wallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyaals%2Fpayzen-wallet/lists"}