The following repository is a todo
API example developed with PHP and the Laravel framework.
This repo serves two main goals:
- Example application using Codeship Basic
- A Todo Backend community project.
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.
- A local instance of Docker Community Edition
- A Codeship. Account
- A Laravel Forge Account - requires subscription
- A DigitalOcean or Amazon Web Services Account
- Some sort of source control hosting code account ( GitHub , Bitbucket , GitLab )
- A local download of our application found here
- A hosted (forked) instance of this application on the source control hosting account of your choice.
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.
- Create a new repository
- Bitbucket
- Gitlab
- Download this repo's source zip file
- Extract the zip, and navigate to the source code folder.
- Use the following terminal commands (assuming you are using Git)
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.
- Login to Codeship (if not already)
- Navigate to
Projects
screen, then click theNew Project
button
- You should now be in the project setup screen
Connect Your SCM
: Select the source code management (SCM) tool you set up in the previous step.
- if you originally signed up with an SCM different than above, we will connect to the service during this step
Choose Your Repository
: Copy/Paste the Repository Clone URL link from previous step- Click the
Connect
button Configure Project
: Click theSelect Basic Project
button
- The setup instructions displayed can be ignored for now, but will be here to remind you in the future
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.
If you run into trouble at any point, please submit an issue here.