{"id":19591644,"url":"https://github.com/pieceowater-dev/deprecated.lotof.template.gateway","last_synced_at":"2025-09-15T19:33:08.190Z","repository":{"id":249543125,"uuid":"829970330","full_name":"pieceowater-dev/lotof.template.gateway","owner":"pieceowater-dev","description":"This project is a gateway service built using the NestJS framework. It serves as a central point for handling requests and routing them to appropriate microservices.","archived":false,"fork":false,"pushed_at":"2024-10-02T03:44:30.000Z","size":369,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-11T08:39:56.366Z","etag":null,"topics":["backend","gateway","lotof","template"],"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/pieceowater-dev.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":"2024-07-17T10:58:45.000Z","updated_at":"2024-10-02T03:44:33.000Z","dependencies_parsed_at":"2024-08-24T14:29:08.152Z","dependency_job_id":"3a01511b-a95e-4d66-a66d-5dd20e65e1ec","html_url":"https://github.com/pieceowater-dev/lotof.template.gateway","commit_stats":null,"previous_names":["pieceowater-dev/lotof.template.gateway"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieceowater-dev%2Flotof.template.gateway","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieceowater-dev%2Flotof.template.gateway/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieceowater-dev%2Flotof.template.gateway/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pieceowater-dev%2Flotof.template.gateway/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pieceowater-dev","download_url":"https://codeload.github.com/pieceowater-dev/lotof.template.gateway/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233148465,"owners_count":18632280,"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","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":["backend","gateway","lotof","template"],"created_at":"2024-11-11T08:29:55.099Z","updated_at":"2025-09-15T19:33:02.861Z","avatar_url":"https://github.com/pieceowater-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lotof.template.gateway\n\n## Description\nThis project is a gateway service built using the NestJS framework. It serves as a central point for handling requests and routing them to appropriate microservices. The gateway also integrates with RabbitMQ for message brokering. 🚀\n\nWith its modular architecture, the gateway enables seamless communication between different services, ensuring efficient and scalable application development. 💪\n\nBy leveraging the power of NestJS, developers can easily implement authentication, request validation, and other common functionalities in a declarative manner. ✨\n\nThe integration with RabbitMQ allows for reliable and asynchronous communication, enabling the gateway to handle high volumes of requests with ease. 🐇\n\nWhether you're building a monolithic application or a distributed system, this gateway service provides a robust foundation for your project. 🏗️\n\n\n## Installation\n### Docker Installation\nTo pull the Docker image from the GitHub Container Registry:\n\n1 - Login to ghcr.io\n```bash\necho \"YOUR_GITHUB_TOKEN\" | docker login ghcr.io -u YOUR_GITHUB_USERNAME --password-stdin\n```\n2 - Go to [GitHub Packages](https://github.com/orgs/pieceowater-dev/packages) menu and copy the command to pull the image\n\n### Manual Installation\nTo install the dependencies, run:\n```bash\nnpm install\n```\n\n## Running the Application\n\n### Development Mode\nTo start the application in development mode with hot-reloading:\n```bash\nnpm run start:dev\n```\n\n### Production Mode\nTo start the application in production mode:\n```bash\nnpm run start:prod\n```\n\n### Debug Mode\nTo start the application in debug mode:\n```bash\nnpm run start:debug\n```\n\n## Environment Variables\nThe application uses the following environment variables, which should be defined in a [`.env`](.env) file at the root of the project:\n\n```properties\nPORT=3000\nMODE=dev\nRABBITMQ_URL=amqp://guest:guest@localhost:5672\n```\n\n## Scripts\nThe following scripts are available in the [`package.json`](package.json):\n\n#### Update dependencies.\n```bash\nnpm run update\n```\n\n#### Build the project.\n```bash\nnpm run build\n```\n\n#### Format the code using Prettier.\n```bash\nnpm run format\n```\n\n#### Start the application.\n```bash\nnpm run start\n```\n\n#### Start the application in development mode.\n```bash\nnpm run start:dev\n```\n\n#### Update ```@pieceowater-dev/lotof.lib.broadcaster``` dependency to latest version and start the application in development mode.\n```bash\nnpm run start:dev:updt\n```\n\n#### Start the application in debug mode.\n```bash\nnpm run start:debug\n```\n\n#### Start the application in production mode.\n```bash\nnpm run start:prod\n```\n\n#### Lint the code using ESLint.\n```bash\nnpm run lint\n```\n\n#### Run unit tests.\n```bash\nnpm run test\n```\n\n#### Run unit tests in watch mode.\n```bash\nnpm run test:watch\n```\n\n#### Run unit tests with coverage.\n```bash\nnpm run test:cov\n```\n\n#### Run unit tests in debug mode.\n```bash\nnpm run test:debug\n```\n\n#### Run end-to-end tests.\n```bash\nnpm run test:e2e\n```\n\n\n## Testing\nTo run the unit tests:\n```bash\nnpm run test\n```\n\nTo run the unit tests in watch mode:\n```bash\nnpm run test:watch\n```\n\nTo run the unit tests with coverage:\n```bash\nnpm run test:cov\n```\n\nTo run the end-to-end tests:\n```bash\nnpm run test:e2e\n```\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Author\n![PCWT Dev Logo](https://avatars.githubusercontent.com/u/168465239?s=50)\n### [PCWT Dev](https://github.com/pieceowater-dev)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpieceowater-dev%2Fdeprecated.lotof.template.gateway","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpieceowater-dev%2Fdeprecated.lotof.template.gateway","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpieceowater-dev%2Fdeprecated.lotof.template.gateway/lists"}