Skip to content

stewblack23/semaphore-demo-php-unsplash

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Unsplash Image Gallery Demo

This is a PHP Laravel image gallery demo that pulls images from the Unsplash PHP API.

Prerequisites

Obtain a API Key from Unsplash:

  • Sign up to Unsplash
  • Go to Applications
  • Create a New Application.
  • Accept the Terms.
  • Set a name for the application and copy the Access Key and the Secret Key.

Development Setup

  • Fork the repository and clone it.
  • Install php and composer.
  • Install dependencies:
$ cd src
$ composer install

Running Locally

  • Create an env file for your Unsplash API:
$ cp .env.example.unsplash .env-unsplash
  • Edit the environment file and fill in your Access Key and Secret Keys obtained from your Unsplash account.
  • Prepare the environment:
$ export APP_ENV=development
$ source .env-unsplash
$ cp .env.example .env
$ php artisan key:generate
$ php artisan serve

Gallery

CI Pipeline

We have a CI pipeline that:

  • Install dependencies.
  • Runs code analisys tests.
  • Runs integration and browser tests.

CI

To run the CI Pipeline:

  • Sign up to Semaphore
  • Add the project to Semaphore.
  • Add a secret called “unsplash” in Semaphore with the following variables:
    • UNSPLASH_ACCESS_KEY = YOUR_UNSPLASH_ACCESS_ID
    • UNSPLASH_SECRET_KEY = YOUR_UNSPLASH_SECRET_KEY Secret
  • Make a commit, the CI pipeline should start automatically

License

The project is open-sourced software licensed under the MIT license.

About

Image Gallery Demo for Unsplash in PHP and Laravel

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 75.6%
  • HTML 17.5%
  • Hack 6.4%
  • Other 0.5%