This demonstrates a Symfony app running on garden.io.
If you dont have a local kubernetes cluster installed, download and install Docker Desktop first.
Start by creating a namespace for your project and secrets to live in.
kubectl create namespace symfony-gardenNext define a secret called postgres-password which will contain your database password.
kubectl --namespace=symfony-garden create secret generic postgres-password --from-literal=root=superdupersecretNow run the deploy command.
garden deploy --devFinnaly be sure to add 127.0.0.1 symfony.local to your /etc/hosts file.