Skip to content

Instantly share code, notes, and snippets.

View fhilipecrash's full-sized avatar
🎯
Focusing on web development

Fhilipe Coelho fhilipecrash

🎯
Focusing on web development
  • Higia Health Tech
  • Parnaíba, Piauí, Brazil
  • 21:46 (UTC -03:00)
View GitHub Profile
@fhilipecrash
fhilipecrash / docker-compose.yml
Created May 15, 2022 22:21
PHP + Apache + MariaDB docker compose configuration
version: "3.9"
services:
web:
image: php:8.0-apache
restart: always
ports:
- 5151:80
volumes:
- ./src:/var/www/html/
@fhilipecrash
fhilipecrash / settings.json
Last active May 27, 2022 14:29
VS Code configuration
{
"workbench.colorTheme": "One Dark Pro Darker",
"workbench.editor.untitled.hint": "hidden",
"workbench.startupEditor": "none",
"workbench.iconTheme": "material-icon-theme",
"git.confirmSync": false,
"gitlens.codeLens.enabled": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,