{"id":20260155,"url":"https://github.com/almoghindi/playeconomy","last_synced_at":"2026-04-06T21:34:36.660Z","repository":{"id":246286205,"uuid":"820639259","full_name":"almoghindi/PlayEconomy","owner":"almoghindi","description":"PlayEconomy is a web platform simulating economic activities, focusing on inventory management and item cataloging. Built with a microservices architecture using ASP.NET, .NET Core, React, RabbitMQ, MongoDB, and Docker, it ensures scalability and maintainability.","archived":false,"fork":false,"pushed_at":"2024-06-26T22:18:10.000Z","size":547,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-02T05:51:01.613Z","etag":null,"topics":["asp-net","asp-net-core-web-api","bootstrap","csharp","docker","docker-compose","dotnet","dotnet-core","mongodb","rabbitmq","react"],"latest_commit_sha":null,"homepage":"","language":"C#","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/almoghindi.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-06-26T22:02:41.000Z","updated_at":"2024-07-03T10:06:54.000Z","dependencies_parsed_at":"2024-06-27T02:18:00.078Z","dependency_job_id":"aa38078c-3583-42d9-97ce-ef52b11048f5","html_url":"https://github.com/almoghindi/PlayEconomy","commit_stats":null,"previous_names":["almoghindi/playeconomy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/almoghindi/PlayEconomy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/almoghindi%2FPlayEconomy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/almoghindi%2FPlayEconomy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/almoghindi%2FPlayEconomy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/almoghindi%2FPlayEconomy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/almoghindi","download_url":"https://codeload.github.com/almoghindi/PlayEconomy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/almoghindi%2FPlayEconomy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31491097,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T17:22:55.647Z","status":"ssl_error","status_checked_at":"2026-04-06T17:22:54.741Z","response_time":112,"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":["asp-net","asp-net-core-web-api","bootstrap","csharp","docker","docker-compose","dotnet","dotnet-core","mongodb","rabbitmq","react"],"created_at":"2024-11-14T11:18:11.778Z","updated_at":"2026-04-06T21:34:36.616Z","avatar_url":"https://github.com/almoghindi.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PlayEconomy\n\nPlayEconomy is a simulation platform designed to mimic economic activities. The platform allows for the management of inventories, cataloging items, and facilitating various economic transactions. This project leverages a microservices architecture to ensure scalability and maintainability.\n\n## Table of Contents\n\n1. [Technologies](#technologies)\n2. [Architecture](#architecture)\n3. [Getting Started](#getting-started)\n4. [Project Structure](#project-structure)\n5. [Configuration](#configuration)\n6. [Running the Application](#running-the-application)\n7. [Contributing](#contributing)\n8. [License](#license)\n\n## Technologies\n\n### Frontend\n\n- React\n- Bootstrap\n\n### Backend\n\n- ASP.NET Core Web API\n- .NET Core\n- RabbitMQ (for messaging)\n- MongoDB (NoSQL database)\n\n### DevOps\n\n- Docker (for containerization)\n- Docker Compose\n\n## Architecture\n\nThe project follows a microservices architecture consisting of the following services:\n\n- **Catalog Service (Play.Catalog)**: Manages the cataloging of items.\n- **Inventory Service (Play.Inventory)**: Handles inventory management.\n- **Common Service (Play.Common)**: Provides shared utilities and components used across different services.\n- **Frontend Service (Play.Frontend)**: React-based frontend application that interacts with the backend services.\n\n## Getting Started\n\n### Prerequisites\n\n- Docker\n- .NET Core SDK\n- Node.js\n- npm (Node Package Manager)\n\n### Installation\n\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/almoghindi/PlayEconomy.git\n    cd PlayEconomy\n    ```\n2. Set up the environment variables:\n    ```bash\n    cp .env.example .env\n    ```\n3. Install frontend dependencies:\n    ```bash\n    cd Play.Frontend\n    npm install\n    cd ..\n    ```\n4. Build and run the services using Docker Compose:\n    ```bash\n    docker-compose up --build\n    ```\n\n## Project Structure\n\n```plaintext\nPlayEconomy/\n├── .vs/\n├── Play.Catalog/\n│   └── src/\n├── Play.Common/\n│   └── src/\n├── Play.Frontend/\n│   ├── public/\n│   ├── src/\n│   ├── .env\n│   ├── .gitignore\n│   ├── package.json\n│   ├── package-lock.json\n│   └── README.md\n├── Play.Infra/\n├── Play.Inventory/\n│   └── src/\n└── docker-compose.yml\n\n## Configuration\n\nThe configuration is managed through environment variables defined in the `.env` file. Here is an example of the configuration variables you might need to set:\n\n```env\nMONGO_URI=mongodb://mongo:27017/playeconomy\nRABBITMQ_URI=amqp://rabbitmq\n```\n## Running the Application\n\nTo start the application:\n\n1. Ensure Docker is running.\n2. Run the following command to start all services:\n    ```bash\n    docker-compose up\n    ```\n3. The application should now be accessible from [http://localhost:3000](http://localhost:3000).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falmoghindi%2Fplayeconomy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falmoghindi%2Fplayeconomy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falmoghindi%2Fplayeconomy/lists"}