{"id":15028097,"url":"https://github.com/yurigauermarques/workstation","last_synced_at":"2026-02-12T11:10:19.515Z","repository":{"id":206527087,"uuid":"716715351","full_name":"yurigauermarques/WorkStation","owner":"yurigauermarques","description":"Ambiete virtualizado para desenvolvimento e estudos.","archived":false,"fork":false,"pushed_at":"2025-02-22T22:24:10.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T23:22:45.798Z","etag":null,"topics":["composer","docker","docker-compose","php82","symfony","ubuntu","vagrant"],"latest_commit_sha":null,"homepage":"","language":"Makefile","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/yurigauermarques.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":"2023-11-09T18:06:37.000Z","updated_at":"2025-02-22T22:24:13.000Z","dependencies_parsed_at":"2024-10-12T13:00:24.516Z","dependency_job_id":null,"html_url":"https://github.com/yurigauermarques/WorkStation","commit_stats":null,"previous_names":["yurigauermarques/station"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurigauermarques%2FWorkStation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurigauermarques%2FWorkStation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurigauermarques%2FWorkStation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurigauermarques%2FWorkStation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yurigauermarques","download_url":"https://codeload.github.com/yurigauermarques/WorkStation/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243338263,"owners_count":20275461,"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":["composer","docker","docker-compose","php82","symfony","ubuntu","vagrant"],"created_at":"2024-09-24T20:07:37.383Z","updated_at":"2026-02-12T11:10:19.461Z","avatar_url":"https://github.com/yurigauermarques.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WorkStation PHP\n\nUma configuração padrão de Vagrant para desenvolvimento com Symfony PHP\n\n## Pré-requisitos\n\n\u003e O que é necessário para o projeto rodar\n\n- [Virtualbox-7.0](https://www.virtualbox.org/)\n- [Vagrant](https://developer.hashicorp.com/vagrant)\n- [Ansible](https://docs.ansible.com/)\n- [Make](https://www.gnu.org/software/make/manual/make.html)\n\n## Softwares Instalados\n\n- [Git](https://git-scm.com/)\n- [PHP 8.2](https://www.php.net/releases/8.2/pt_BR.php)\n  \u003e php8.2-zip  php8.2-xml      php8.2-pgsql\n  \u003e\n  \u003e php8.2-intl php8.2-mbstring php8.2-xdebug\n- [Nodejs 22](https://nodejs.org/pt)\n- [Xdebug](https://xdebug.org/)\n- [Composer](https://getcomposer.org)\n- [Docker](https://www.docker.com/)\n- [Docker Compose](https://github.com/docker/compose/)\n- [Symfony CLI](https://symfony.com/download)\n\n## Instalação\n\nClone o repositório\n\n```bash\ngit clone git@github.com:yurigauermarques/WorkStation.git work-station;\ncd work-station;\nsudo mkdir --parents --verbose /etc/vbox \u0026\u0026 sudo cp .scripts/vbox/networks.conf /etc/vbox/networks.conf;\n```\n\nAdicione seus projetos dentro do diretório `work-station/projects`\n\n## Comandos Básicos\n\n\u003e Foram criados atalhos dos comandos do vagrant por causa da injeção de informações via `.env`\n\n- Levantar a VM\n\n  ```bash\n  make up;\n  ```\n\n- Desligara VM\n\n  ```bash\n  make halt;\n  ```\n\n- Conectar na VM por linha de comando\n\n  ```bash\n  make ssh;\n  ```\n\n- Abrir o Projeto utilizando VSCode\n  \u003e - [Remote - SSH](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh)\n  \u003e - [Configurar acesso SSH](#configurar-acesso-ssh)\n\n  ```bash\n  make code-projects;\n  ```\n\n- Atualizar as configurações da VM\n\n  ```bash\n  make reload;\n  ```\n\n- Destruia VM\n\n  ```bash\n  make destroy;\n  ```\n\n## Configurar acesso SSH\n\n  \u003e configurar o host no `.ssh/config` [SSH to Vagrant from VScode](https://medium.com/@lizrice/ssh-to-vagrant-from-vscode-5b2c5996bc0e)\n\n- Executar o comando `make ssh-config`\n- Copiar o conteúdo do retorno\n- Colar o conteúdo no arquivo `~/.ssh/config`\n\n## Tips\n\n  \u003e [Connect to a remote host from the terminal](https://code.visualstudio.com/docs/remote/troubleshooting#_connect-to-a-remote-host-from-the-terminal)\n\nPor exemplo, para conectar no `remote_server` e abrir o diretório `/code/my_project`, run:\n\n```bash\ncode --remote ssh-remote+remote_server /code/my_project\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurigauermarques%2Fworkstation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyurigauermarques%2Fworkstation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurigauermarques%2Fworkstation/lists"}