{"id":30930238,"url":"https://github.com/matheussc017/vehiclemanagerfrontend","last_synced_at":"2026-05-14T20:32:42.651Z","repository":{"id":305357906,"uuid":"1001181738","full_name":"MatheusSC017/VehicleManagerFrontend","owner":"MatheusSC017","description":"This project is the Angular frontend for the Vehicle Manager API, a complete vehicle dealership management system. It provides an intuitive user interface for managing vehicles, clients, finances, sales, and maintenance records.","archived":false,"fork":false,"pushed_at":"2025-08-20T23:43:43.000Z","size":2789,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-10T12:28:53.816Z","etag":null,"topics":["angular","javascript"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/MatheusSC017.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-13T00:44:23.000Z","updated_at":"2025-08-20T23:43:46.000Z","dependencies_parsed_at":"2025-08-13T13:08:38.678Z","dependency_job_id":"5682696d-016e-431b-90d0-dfaa7a81eace","html_url":"https://github.com/MatheusSC017/VehicleManagerFrontend","commit_stats":null,"previous_names":["matheussc017/vehiclemanagerfrontend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MatheusSC017/VehicleManagerFrontend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatheusSC017%2FVehicleManagerFrontend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatheusSC017%2FVehicleManagerFrontend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatheusSC017%2FVehicleManagerFrontend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatheusSC017%2FVehicleManagerFrontend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatheusSC017","download_url":"https://codeload.github.com/MatheusSC017/VehicleManagerFrontend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatheusSC017%2FVehicleManagerFrontend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33042165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"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":["angular","javascript"],"created_at":"2025-09-10T10:42:37.640Z","updated_at":"2026-05-14T20:32:42.615Z","avatar_url":"https://github.com/MatheusSC017.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VehicleManager (Frontend)\n\n![License](https://img.shields.io/badge/license-MIT-blue.svg)\n\nAn intuitive user interface for managing vehicles, clients, finances, sales, and maintenance records.\n\n---\n\n## Table of Contents\n\n* [About the Project](#about-the-project)\n  * [Built With](#built-with)\n* [Getting Started](#getting-started)\n  * [Prerequisites](#prerequisites)\n  * [Installation](#installation)\n* [Configuration](#configuration)\n* [Features](#features)\n* [Backend Integration](#backend-integration)\n* [License](#license)\n\n---\n\n## About the Project\n\nThis project is the Angular frontend for the Vehicle Manager API, a complete vehicle dealership management system. It provides an intuitive user interface for managing vehicles, clients, finances, sales, and maintenance records.\n\n### Built With\n\n* [Angular](https://angular.io/)\n* [Angular CLI](https://github.com/angular/angular-cli)\n* [TypeScript](https://www.typescriptlang.org/)\n\n---\n\n## Getting Started\n\nTo get a local copy up and running follow these simple steps.\n\n### Prerequisites\n\nBefore you begin, ensure you have the following installed:\n\n* **Node.js**: [Download and Install Node.js](https://nodejs.org/en/download/)\n* **Angular CLI**: Install globally using npm:\n  ```sh\n  npm install -g @angular/cli\n  ```\n\n### Installation\n\n1.  **Clone the repo**\n    ```sh\n    git clone https://github.com/your_username/vehicle-manager-frontend.git\n    ```\n2.  **Install NPM packages**\n    ```sh\n    npm install\n    ```\n3.  **Run the development server**\n    ```sh\n    ng serve\n    ```\n    Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.\n\n---\n\n## Configuration\n\nThe application's backend API URL can be configured in the `src/environment/environment.ts` file.\n\n```typescript\nexport const environment = {\n  production: false,\n  apiUrl: 'http://localhost:8080/api',\n  baseUrl: 'http://localhost:8080'\n};\n```\n\n---\n\n## Features\n\n*   **Vehicle Management**: Add, edit, and view vehicle details including images.\n*   **Client Management**: Keep track of all your clients and their information.\n*   **Financing**: Manage financing details for vehicle sales.\n*   **Sales Records**: Log and view sales records.\n*   **Maintenance Logs**: Keep a record of vehicle maintenance history.\n*   **User Authentication**: Secure login and registration for users.\n\n---\n\n## Backend Integration\n\nThis frontend is designed to work with the [Vehicle Manager API](https://github.com/your_username/vehicle-manager-api). The backend is a Spring Boot application that provides a RESTful API for all the features mentioned above.\n\nKey backend features include:\n*   JWT authentication\n*   Scalable architecture\n*   Comprehensive data models for vehicles, clients, sales, and more.\n\nFor more information, please refer to the backend project's `README.md`.\n\n---\n\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheussc017%2Fvehiclemanagerfrontend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatheussc017%2Fvehiclemanagerfrontend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheussc017%2Fvehiclemanagerfrontend/lists"}