• Overview
    Key features
    • Observability
    • Auto-scaling
    • Multi-framework
    • Security
    Frameworks
    • Django
    • Next.js
    • Drupal
    • WordPress
    • Symfony
    • Magento
    • See all frameworks
    Languages
    • PHP
    • Python
    • Node.js
    • Ruby
    • Java
    • Go
  • Industries
    • Consumer Goods
    • Media/Entertainment
    • Higher Education
    • Government
    • Ecommerce
  • Pricing
  • Overview
    Featured articles
    • Switching to Platform.sh can help IT/DevOps organizations drive 219% ROI
    • Organizations, the ultimate way to manage your users and projects
  • Support
  • Docs
  • Login
  • Request a demo
  • Free Trial
Blog
Thumbnail

Laravel on Platform.sh, part 2

phplaravel
24 November, 2016
John Grubb
John Grubb
Director of Customer Care

Hello (!) and welcome back to Platform.sh from scratch. In this post we’ll learn about how to set up the Laravel app from the previous post to hook in to various services on Platform, starting with a database connection and moving on to using Redis as a cache and session store. Along the way we’ll visit Platform.sh’s “environment variables” feature, and we’ll set up our first fully functioning deploy hook.

Prerequisites - go through the previous post and get that far…

Let’s get started!

So the first step is to add a database to your  services.yaml  file. Let’s choose PostgresQL, which is my personal preference for open source databases these days (mostly due to the fact that it hasn’t been bought by Oracle and subsequently forked). Add this to your  services.yaml  file, which should currently be empty.

# adds a Postgres 9.6 service to your project
# and gives it about a gigabyte of disk space
pgsql:
  type: postgresql:9.6
  disk: 1024

And in your  .platform.app.yaml  add this anywhere -

# This is how you define service relationships in your application
# I personally think this should've been named "services" but such is life
relationships:
  database: "pgsql:postgresql"

As you can see, setting up your project to provision new services is super easy and as the platform matures we’ll likely support several versions of any given piece of software. This will someday allow users to easily test out upgrading something like a database to a new major version in another branch without worrying about the usual hassles.

Now we need to set up our application to use these new services. This is fairly straightforward, but feels a little strange the first time so I’ll walk you through the general idea that you’ll use no matter what the framework or language you’re using.

Platform.sh encodes many key pieces of information about your application into OS environment variables. If you SSH into your app container you can  echo $PLATFORM_APPLICATION  and get back a long string that’s in essence the base64 encoded version of your  .platform.app.yaml  file. Same with  $PLATFORM_ROUTES . This is how we store metadata about your application, and you’ll make use of these variables as well to establish database connections. The basic algorithm for finding DB connection info is -

  • read and decode $PLATFORM_RELATIONSHIPS into a json string.
  • parse that json string into an object and use the attributes of that object to set the connection info

So with that in mind, let’s get your Laravel app wired up.

First let’s make use of a nice little composer package that Platform.sh has authored in order to simplify this bit. Run  composer require platformsh/config-reader  and install this package. Next let’s head to  config/database.php  and add this little snippet to the top -

// config/database.php
$config = new Platformsh\ConfigReader\Config();

You can read the source of the composer package yourself, but essentially the  $config  instance has properties for each of the encoded environment variables that Platform.sh adds to your environments. In the case of the relationships attribute, you might have several databases defined, so it’s a simple matter of digging into that property to pull that values out.

In the case of Laravel, it makes use of the  vlucas/phpdotenv  package to read certain settings out of environment variables, so it’s really just a matter of translating the nested variables that Platform.sh provides into what Laravel is already expecting.

I suspect it would be astonishingly easy for someone to come up with a drop in “Laravel Helper” package that would set all this up for automatically, but I haven’t gotten that far just yet.

With this much code, your app is now ready to connect to the database in whichever environment you’ll be deploying so go ahead and commit this.

git add . && git commit -m "adding platform db config"

There’s one more blocker for your Laravel app that you’ll need to take care of before you’re really up and running and that’s the need for the  APP_KEY  variable to be defined. Time to learn about Platform.sh’s environment variables feature!

Platform.sh Environment Variables

You’re likely familiar with the situation where you need to make use of some “privileged” data in your application, and that you don’t want to store that data in Git. Or perhaps the use case is that you have different settings for certain things in development than you do in production, perhaps a  DEBUG  flag or something like that. The usual solution for these cases is to use OS environment variables (just like we do). We provide a feature easily setting variables that you can read in your environments, so let’s set one up for the Laravel  APP_KEY .

Head to your project’s admin page and click on “configure environment”, then “Variables”. The simplest thing to do is pull the APP_KEY out of your local  .env  file, so click “add variable” and give it a name of “APP_KEY” and put the value in the “value” field. This will trigger a redeployment of your application.

Last step is to add some code in to your application to read those variables back out. Add this to the top of your  config/app.php  file -

// config/app/php
$config = new \Platformsh\ConfigReader\Config();

Provided you’ve already set up that APP_KEY variable, it’ll be read further down that file and you’re good to go, so let’s commit and push to platform.

git add .
git commit -m "adding platform environment variables config"
git push platform master

So this post is already a bit long so I’ll just touch on one last point quickly. Now that you have this database all hooked up and ready to go, you’re likely going to want to use it! Should you want to automate the process of applying your database migrations, you can do that in a simple deploy hook.

hooks:
  deploy: |
    php artisan migrate --force

The  --force  flag sounds scary but all it does it disable the command needing feedback which of course, you are unable to provide yourself. The other option is to SSH into the app server after deployment and run the command yourself, which I’ll demonstrate in the next post.

Get the latest Platform.sh news and resources
Subscribe

Related Content

A festive treat: PHP 8.3 is already available on Platform.sh

A festive treat: PHP 8.3 is already available on Platform.sh

Company
AboutSecurity and complianceTrust CenterCareersPressContact us
Thank you for subscribing!
  •  
Field required
Leader Winter 2023
System StatusPrivacyTerms of ServiceImpressumWCAG ComplianceAcceptable Use PolicyManage your cookie preferencesReport a security issue
© 2024 Platform.sh. All rights reserved.
Supported by Horizon 2020's SME Instrument - European Commission 🇪🇺