{"id":16401186,"url":"https://github.com/carsso/pcc-manager","last_synced_at":"2025-10-26T15:31:04.057Z","repository":{"id":37654075,"uuid":"443916680","full_name":"carsso/pcc-manager","owner":"carsso","description":"OVHcloud PCC (Private Cloud / Hosted Private Cloud) realtime visualization web interface written in PHP/Laravel and VueJS - Inspired by the great OVHcloud vScope interface - Not affiliated with OVHcloud.","archived":false,"fork":false,"pushed_at":"2025-01-16T06:19:45.000Z","size":2989,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-06T09:48:42.573Z","etag":null,"topics":["laravel","ovh","ovh-api","ovhcloud","php","private-cloud","vmware","vuejs"],"latest_commit_sha":null,"homepage":"https://pcc-manager.com","language":"Vue","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/carsso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2022-01-03T02:11:10.000Z","updated_at":"2025-01-16T06:18:04.000Z","dependencies_parsed_at":"2023-09-24T21:45:16.654Z","dependency_job_id":null,"html_url":"https://github.com/carsso/pcc-manager","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsso%2Fpcc-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsso%2Fpcc-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsso%2Fpcc-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsso%2Fpcc-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/carsso","download_url":"https://codeload.github.com/carsso/pcc-manager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238357432,"owners_count":19458578,"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":["laravel","ovh","ovh-api","ovhcloud","php","private-cloud","vmware","vuejs"],"created_at":"2024-10-11T05:29:39.935Z","updated_at":"2025-10-26T15:31:04.050Z","avatar_url":"https://github.com/carsso.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/badge/License-MIT-blue.svg)](http://opensource.org/licenses/MIT)\n\n# OVHcloud PCC web interface\n\nWeb interface displaying realtime OVHcloud PCC (Private Cloud / Hosted Private Cloud) infrastructure data (virtual machines, hosts and datastores health \u0026 resource usage).\n\nTest it live on [pcc-manager.com](https://pcc-manager.com)\n\n_Inspired by the great OVHcloud vScope \u003csup\u003e\n[link](https://help.ovhcloud.com/csm/en-vmware-using-vscope?id=kb_article_view\u0026sysparm_article=KB0045667)\u003c/sup\u003e interface. Not affiliated with OVHcloud._\n\nWritten in PHP/Laravel and VueJS. _Depends on [OVHcloud APIs PHP wrapper](https://github.com/ovh/php-ovh) and my [OVHcloud Provider for OAuth 2.0 Client](https://github.com/carsso/oauth2-ovhcloud)_\n\n### Products compatibility\n\n#### Compatible OVHcloud products :\n- Dedicated Cloud\n- Private Cloud\n- SDDC\n- Hosted Private Cloud Premier \u003csup\u003epowered by VMware\u003c/sup\u003e\n- Hosted Private Cloud \u003csup\u003epowered by VMware\n[link](https://www.ovhcloud.com/en/enterprise/products/hosted-private-cloud/)\u003c/sup\u003e\n- Managed Bare Metal Essentials \u003csup\u003epowered by VMware\n[link](https://www.ovhcloud.com/en/managed-bare-metal/)\u003c/sup\u003e\n\n### Screenshots:\n\n#### Datacenter view:\n![Datacenter view](https://user-images.githubusercontent.com/666182/156908567-49930926-796d-47bf-b026-5e1347432626.png)\n\n![Datacenter view](https://user-images.githubusercontent.com/666182/156908568-f45b3c47-c28f-4aba-84e2-8c83e110097e.png)\n\n## Deployment\n\n#### Clone repository : \n```sh\ngit clone https://github.com/carsso/pcc-manager.git\n```\n\n#### Switch to deploy branch :\n```sh\ngit fetch origin deploy\n```\n\n#### Copy default env file :\n```sh\ncp .env.example .env\n```\n\n#### Fill the env file :\n```sh\nvim .env\n```\n_Read https://github.com/carsso/php-ovhcloud#supported-endpoints to find the URL to generate the script credentials and the supported endpoints_\n\n#### Install dependencies based on lock file\n```sh\ncomposer install --no-interaction --prefer-dist --optimize-autoloader\n```\n\n#### Clear cache\n```sh\nphp artisan optimize\n```\n\n#### Create the storage symbolic links\n```sh\nphp artisan storage:link\n```\n\n## Development\n\n#### Pre-requisites\n- PHP \u003e= 8.1\n- NodeJS \u003e= 18\n\n#### Clone repository (main branch) : \n```sh\ngit clone git@github.com:carsso/pcc-manager.git\n```\n\nInstall PHP dependencies with Composer :\n```sh\ncomposer install\n```\n\nInstall JS dependencies with NPM :\n```sh\nnpm install\n```\n\n#### Copy default env file :\n```sh\ncp .env.dev.example .env\n```\n\n#### Fill the env file :\n```sh\nvim .env\n```\n_Read https://github.com/carsso/php-ovhcloud#supported-endpoints to find the URL to generate the script credentials and the supported endpoints_\n\n#### Create the storage symbolic links\n```sh\nphp artisan storage:link\n```\n\n#### Build js and css files automatically while developing:\n```sh\nnpm run dev\n```\n\n#### Build js and css files for prod :\n```sh\nnpm run build\n```\n\n## License\n\nThe Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarsso%2Fpcc-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarsso%2Fpcc-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarsso%2Fpcc-manager/lists"}