summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcia Ramos <virtua.creative@gmail.com>2018-01-17 17:49:12 -0200
committerMarcia Ramos <virtua.creative@gmail.com>2018-01-17 17:49:12 -0200
commit97e9d77ab9365504299481a1b93876ed3389ad2c (patch)
tree80fd66258992d94ec585cd1b9ebc9ff847c98380
parenta0797e7b0e4ad81c62fe0f01fddd53180ec617a1 (diff)
downloadgitlab-ce-docs-articles-test-layout.tar.gz
add author metadata to article front matterdocs-articles-test-layout
this is a test for https://gitlab.com/gitlab-com/gitlab-docs/merge_requests/182
-rw-r--r--doc/ci/examples/laravel_with_gitlab_and_envoy/index.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md
index e1aff6fdf36..504a5af9a03 100644
--- a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md
+++ b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md
@@ -1,16 +1,14 @@
---
redirect_from: 'https://docs.gitlab.com/ee/articles/laravel_with_gitlab_and_envoy/index.html'
+author: Mehran Rasulian
+author_gitlab: mehranrasulian
+level: intermediary
+article_type: tutorial
+date: 2017-08-31
---
# Test and deploy Laravel applications with GitLab CI/CD and Envoy
-> **[Article Type](../../../development/writing_documentation.md#types-of-technical-articles):** tutorial ||
-> **Level:** intermediary ||
-> **Author:** [Mehran Rasulian](https://gitlab.com/mehranrasulian) ||
-> **Publication date:** 2017-08-31
-
-## Introduction
-
GitLab features our applications with Continuous Integration, and it is possible to easily deploy the new code changes to the production server whenever we want.
In this tutorial, we'll show you how to initialize a [Laravel](http://laravel.com/) application and setup our [Envoy](https://laravel.com/docs/envoy) tasks, then we'll jump into see how to test and deploy it with [GitLab CI/CD](../README.md) via [Continuous Delivery](https://about.gitlab.com/2016/08/05/continuous-integration-delivery-and-deployment-with-gitlab/).
@@ -18,6 +16,8 @@ In this tutorial, we'll show you how to initialize a [Laravel](http://laravel.co
We assume you have a basic experience with Laravel, Linux servers,
and you know how to use GitLab.
+## Introduction
+
Laravel is a high quality web framework written in PHP.
It has a great community with a [fantastic documentation](https://laravel.com/docs).
Aside from the usual routing, controllers, requests, responses, views, and (blade) templates, out of the box Laravel provides plenty of additional services such as cache, events, localization, authentication and many others.