The following repository is a todo
API example developed with PHP and the Laravel framework.
This repo serves two main goals:
The following README
is a guide to build and deploy with Codeship Pro You will also be able to run this project locally, and use it as a starter app for PHP-Laravel Docker projects.
Be sure to star/watch this repo to stay up-to-date with any changes. If you have any questions or suggestions regarding this example , please submit an issue here.
There are a few resources to make sure you have available during this guide.
This section makes the assumption that you will be following along from start to finish. If you wish to skip the deployment to Heroku, ignore step 5.
Docker CE - Container service everything will run on
A public, cloud based Github/Gitlab/Bitbucket Account - Git Repository service
Codeship Account - CI/CD service
Codeship Jet CLI - CLI tool for testing builds locally
brew cask install jet
Heroku Account - App hosting
Signup for each of these is free, and should only take you a few minutes if you don't already have one. You can use your current accounts if you already have one available.
Once you have everything ready to go, you can move on to the next step.
Continuous Integration requires developers to integrate code to a repository that is then verified by an automated build.
This project uses PHPunit integration testing of the todo
api. Every commit into the shared repo will be tested to verify the code is working correctly before allowing it to be merged.
In this section, you will set up your repository, create a Codeship project, and test the build locally using Jet CLI.
Using the account you set up in the Getting Started section, you will now create your own repository to connect to Codeship.
Since this repository is on Github, you can fork this repo and move on to the next step. If you are using Bitbucket/Gitlab, you will need to perform a few additional steps.
git init
git remote add origin REPOSITORY_CLONE_URL
git add .
git commit
git push -u origin master
Make sure to copy the 'Repository Clone URL' link for the next step, you will use it to set up the project in Codeship.
You now should have a remote repository that is publicly accessible in your account.
Now that your repository is setup, the next step is to create the project in Codeship, so when you push to the remote, tests will run automatically, making continuous integration easy.
Projects
screen, then click the New Project
button
Connect Your SCM
: Select the source code management (SCM) tool you set up in the previous step.
Choose Your Repository
: Copy/Paste the Repository Clone URL link from previous stepConnect
buttonConfigure Project
: Click the Select Pro Project
button
Your project is set up at this time, and any code commited and pushed to the repository will now run builds automatically, based on our current setup.
Note: The current setup will attempt to deploy on master, which will fail until we set these up. We will test the build locally without the deployment first.
While you are in the Codeship project, there is an encryption key you will be using for other steps that can be downloaded now. The encryption key can be used to encrypt sensitive data so it can be safely committed.
General
in the left menuAES key
, and move it to your project's root foldercodeship.aes
Alternatively, you can create the file
codeship.aes
and copy paste the key directly into that file.
In the first part of this tutorial, you should have installed the Jet CLI
. If not, make sure you do that now. If you run jet
in your terminal you should see the following output
Usage:
jet [command]
....
If everything is working properly, you can now test the build.
jet steps
...
...
{StepFinished=step_name:"tests" type:STEP_FINISHED_TYPE_SUCCESS}
{StepFinished=step_name:"deploy" type:STEP_FINISHED_TYPE_SKIPPED}
At this point, this build will work in Codeship. The deploy step was skipped because the local build was not tagged. If you run jet steps --tag master
you would see the build process start immediately following. This will fail because there are a couple more steps to finalize.
Let's move on and do that now.
If you want to avoid running the deployment step and push the current code into your repository, you can create a new branch. This will bypass the deployment in Codeship and only run the build.
Much like continuous integration, continuous deployment is the practice of shipping code to production on a frequent basis. With Codeship, you can add a deployment step that runs when all tests pass. You can also filter based on specific criteria like tags, which this repo does. When the branch is master
and all tests pass, we deploy immediately following to Heroku.
Let's get the app set up, and start deploying code.
New
-> Create New App
Create App
buttonThis app uses PostgreSQL
as it's database, and Heroku has a free add-on you can use.
Resources
Add-ons
, search for postgres
Hobby Dev - Free
, then click the Provision
button.Copy the new application name for use later.
Account Settings
API key
. Click the Reveal
buttondeployment.env.sample
and change your_api_key_here
to your api key without any qutes.deployment.env.sample
to deployment.env
In a previous step, you should have created the codeship.aes
file. This encryption key can be used to encrypt sensitive data so it can be safely committed.
In this step, we will be encrypting the Heroku api key file you just created.
codeship.aes
and deployment.env
files.jet encrypt deployment.env deployment.env.encrypted
This will encrypt the file with your api key from Heroku. the unencrypted deployment.env
, and codeship.aes
key are both in the .gitignore file and will not be commited to the repository.
At this point, you have everything you need to test and deploy the project.
To simplify the deployment to Heroku, Codeship provides a Docker image called codeship/heroku-deployment
. We will be using this to deploy.
codeship-steps.yml
filecommand: codeship_heroku deploy /deploy php-laravel-todoapp
and command: heroku run --app php-laravel-todoapp -- php artisan migrate --no-interaction
php-laravel-todoapp
with your Heroku application name.When complete and the build is green, you should now be able to navigate to the app with the Heroku provided url yourappname.heroku.com
.
If you run into trouble at any point, please submit an issue here.