{"id":15130192,"url":"https://github.com/quang-pham-dev/rich-challenge","last_synced_at":"2026-02-01T09:34:12.335Z","repository":{"id":257345942,"uuid":"857974220","full_name":"quang-pham-dev/rich-challenge","owner":"quang-pham-dev","description":"rich-challange built with NestJS - GraphQL - Postgres","archived":false,"fork":false,"pushed_at":"2024-09-16T06:25:44.000Z","size":311,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T06:45:39.891Z","etag":null,"topics":["authentication","authorization","graphql","graphql-playground","nestjs"],"latest_commit_sha":null,"homepage":"","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/quang-pham-dev.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}},"created_at":"2024-09-16T04:16:42.000Z","updated_at":"2025-01-13T01:28:28.000Z","dependencies_parsed_at":"2024-09-16T06:42:33.604Z","dependency_job_id":null,"html_url":"https://github.com/quang-pham-dev/rich-challenge","commit_stats":null,"previous_names":["quang-pham-dev/rich-challenge"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/quang-pham-dev/rich-challenge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quang-pham-dev%2Frich-challenge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quang-pham-dev%2Frich-challenge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quang-pham-dev%2Frich-challenge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quang-pham-dev%2Frich-challenge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quang-pham-dev","download_url":"https://codeload.github.com/quang-pham-dev/rich-challenge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quang-pham-dev%2Frich-challenge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28975259,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T08:16:14.655Z","status":"ssl_error","status_checked_at":"2026-02-01T08:06:51.373Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["authentication","authorization","graphql","graphql-playground","nestjs"],"created_at":"2024-09-26T02:41:43.071Z","updated_at":"2026-02-01T09:34:12.320Z","avatar_url":"https://github.com/quang-pham-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rich Challenge\n\n## Table of Contents\n\n- [Rich Challenge](#rich-challenge)\n  - [Table of Contents](#table-of-contents)\n  - [Getting Started - Local Development](#getting-started---local-development)\n    - [Prerequisites](#prerequisites)\n    - [Clone the Repository](#clone-the-repository)\n  - [Available Scripts](#available-scripts)\n    - [`yarn start:dev`](#yarn-startdev)\n    - [`yarn test`](#yarn-test)\n    - [`yarn build`](#yarn-build)\n  - [GraphQL Playground](#graphql-playground)\n  - [Environment Variables:](#environment-variables)\n\n## Getting Started - Local Development\n\n### Prerequisites\n\nMake sure you have the following installed on your system:\n\n- Node.js 20 or later\n- npm (comes with Node.js) or yarn\n- Docker\n\n### Clone the Repository\n\n1. Open your terminal.\n2. Run the following command to clone the repository:\n   ```\n   git clone https://github.com/quang-pham-dev/rich-challenge.git\n   ```\n3. Navigate to the project directory:\n   ```\n   cd rich-challenge\n   ```\n\n## Available Scripts\n\nIn the project root directory, you can run:\n\n### `yarn start:dev`\n\nRuns the app in development mode.\nBy default, it is accessible at http://localhost:8080\n\n### `yarn test`\n\nRuns tests.\n\n### `yarn build`\n\nBuilds the app for production in the `dist` folder.\n\nYour app is ready to be deployed!\n\n## GraphQL Playground\n\nTo access the GraphQL Playground:\n\n1. Ensure the application is running (use `yarn start:dev` for development mode).\n2. Open your web browser and navigate to `http://localhost:8080/graphql`.\n3. You should now see the GraphQL Playground interface where you can explore the API, write queries, and test mutations.\n\nNote: Make sure the `GRAPHQL_PLAYGROUND` environment variable is set to `true` to enable the playground in your environment.\n\n## Environment Variables:\n\n| Environment            | Description                              | Value                                                   |\n| ---------------------- | ---------------------------------------- | ------------------------------------------------------- |\n| PORT                   | The port that the server is listening to | 8080                                                    |\n| DATABASE_URL           | Database connection URL                  | postgresql://user:password@localhost:5432/your_database |\n| JWT_ACCESS_SECRET      | JWT access token secret                  | your_access_secret                                      |\n| JWT_ACCESS_EXPIRATION  | JWT access token expiration              | 15m                                                     |\n| JWT_REFRESH_SECRET     | JWT refresh token secret                 | your_refresh_secret                                     |\n| JWT_REFRESH_EXPIRATION | JWT refresh token expiration             | 7d                                                      |\n| GRAPHQL_PLAYGROUND     | Enable GraphQL playground                | true                                                    |\n| GRAPHQL_INTROSPECTION  | Enable GraphQL introspection             | true                                                    |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquang-pham-dev%2Frich-challenge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquang-pham-dev%2Frich-challenge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquang-pham-dev%2Frich-challenge/lists"}