Tools etc. - redbecks/dev-notes GitHub Wiki

Docker

  • Show all Docker container docker ps
  • Show container docker inspect -f {{range.NetworkSettings.Networks}}{{.Gateway}}{{end}} <container-name>

xdebug

  • Add SAIL_XDEBUG_MODE=develop,debug,coverage to .env
  • Add SAIL_XDEBUG_CONFIG="client_host=<host-ip-address>" to .env
  • Install xdebug helper extension in browser xdebug Browser Extension

Database GUI

PSR-12

git-flow

git flow feature start my-feature
git commit -am "Pithy commit message"
git status
git flow feature finish my-feature

git fetch --tags
git flow release start 1.0
git flow release finish 1.0
git commit -am "Bumped version number to 1.0"
git push origin main
git push origin develop
git push --tags

git flow hotfix start 1.0.1
git commit -am "Bumped version number to 1.0.1"
git commit -am "Fixed major issue with site!"
git flow hotfix finish 1.0.1
git push origin main
git push origin develop
git push --tags

GitFlow CheatSheet

An was ist zu denken?

  • Welche Datenbank? eg. MariaDB
  • CSS Framework? eg. Tailwind
  • Git?