Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zeroc0d3/deploy-laravel
Zero downtime deployment Laravel with Capistrano
https://github.com/zeroc0d3/deploy-laravel
bitbucket-pipelines capistrano capistrano-deployment cicd cicd-pipeline circleci deploy deployment docker docker-compose gitlab hacktoberfest hacktoberfest2020 jenkins jenkins-ci jenkins-pipeline laravel openshift
Last synced: about 1 month ago
JSON representation
Zero downtime deployment Laravel with Capistrano
- Host: GitHub
- URL: https://github.com/zeroc0d3/deploy-laravel
- Owner: zeroc0d3
- License: apache-2.0
- Created: 2020-10-23T02:40:26.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-15T19:48:24.000Z (almost 4 years ago)
- Last Synced: 2024-09-30T18:01:24.214Z (about 2 months ago)
- Topics: bitbucket-pipelines, capistrano, capistrano-deployment, cicd, cicd-pipeline, circleci, deploy, deployment, docker, docker-compose, gitlab, hacktoberfest, hacktoberfest2020, jenkins, jenkins-ci, jenkins-pipeline, laravel, openshift
- Language: Python
- Homepage:
- Size: 2.37 MB
- Stars: 19
- Watchers: 5
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# Deploy Laravel (with Capistrano)
![all contributors](https://img.shields.io/github/contributors/zeroc0d3/deploy-laravel)
![tags](https://img.shields.io/github/v/tag/zeroc0d3/deploy-laravel?sort=semver)
![issues](https://img.shields.io/github/issues/zeroc0d3/deploy-laravel)
![pull requests](https://img.shields.io/github/issues-pr/zeroc0d3/deploy-laravel)
![forks](https://img.shields.io/github/forks/zeroc0d3/deploy-laravel)
![stars](https://img.shields.io/github/stars/zeroc0d3/deploy-laravel)
![license](https://img.shields.io/github/license/zeroc0d3/deploy-laravel)Zero downtime deployment Laravel with Capistrano
## Prerequirements
* Ruby Environment (RBENV) or Ruby Version Manager (RVM)* Clone this repo
```
git clone [email protected]:zeroc0d3/deploy-laravel.git
```
* Running bundle
```
cd deploy-laravel
bundle install
```
* Edit Laravel source target in `config/deploy.rb`
```
set :repo_url, "[YOUR_LARAVEL_REPO]"
```
* Edit target server environment in `config/deploy/[environment].rb`
```
server '[YOUR_TARGET_SERVER]'
```
* Upload your shared files & folders in your server / VPS
```
/data/[laravel-project]/[environment]/shared/src
---
.env
composer.json
composer.lock
node_modules
package.json
storage/debugbar
storage/framework
storage/logs
vendor
yarn.lock
```* Setup number of release folder in `config/deploy.rb`
```
set :keep_releases, 5 ## keep 5 release folder
```## Symlink Files (Default)
```
append :linked_files, "#{fetch(:source)}/.env", "#{fetch(:source)}/composer.json", "#{fetch(:source)}/composer.lock", "#{fetch(:source)}/package.json", "#{fetch(:source)}/yarn.lock",
---
.env
composer.json
composer.lock
package.json
yarn.lock
```## Symlink Folders (Default)
```
append :linked_dirs, "#{fetch(:source)}/vendor", "#{fetch(:source)}/node_modules", "#{fetch(:source)}/storage"
---
vendor
node_modules
storage
```## Folder Structure
```
[laravel-project]
├── staging
│ ├── current -> /data/[laravel-project]/staging/releases/20200823134641/
│ ├── releases
│ │ ├── 20200823081119
│ │ └── 20200823134641 ## the latest symlink
│ │ ├── .env -> /data/[laravel-project]/staging/shared/src/.env
│ │ ├── composer.json -> /data/[laravel-project]/staging/shared/src/composer.json
│ │ ├── composer.lock -> /data/[laravel-project]/staging/shared/src/composer.lock
│ │ ├── vendor -> /data/[laravel-project]/staging/shared/src/vendor/
│ │ ├── node_modules -> /data/[laravel-project]/staging/shared/src/node_modules/
│ │ ├── storage -> /data/[laravel-project]/staging/shared/src/storage/
│ │ └── yarn.lock -> /data/[laravel-project]/staging/shared/src/yarn.lock
│ ├── shared
│ │ ├── log
│ │ └── src
│ │ ├── .env
│ │ ├── composer.json
│ │ ├── vendor
│ │ ├── node_modules
│ │ └── storage
│ │ ├── debugbar
│ │ ├── framework
│ │ │ ├── cache
│ │ │ ├── sessions
│ │ │ └── views
│ │ ├── logs
│ │ └── users
│ └── tmp
└── [environments]
```## Deployment
* Staging
```
cap staging deploy
```
* Production
```
cap production deploy
```## Manual Trigger
* Reload / Restart NGINX
```
cap [environment] nginx:[manual_reload|manual_restart]
---
cap staging nginx:manual_reload
cap staging nginx:manual_restart
```
* Reload / Restart PHP-FPM (php7.4-fpm)
```
cap [environment] phpfpm:[manual_reload|manual_restart]
---
cap staging phpfpm:manual_reload
cap staging phpfpm:manual_restart
```
* Install / Dump Autoload Composer
```
cap [environment] composer:[install|dumpautoload|initialize]
---
cap staging composer:install
cap staging composer:dumpautoload
cap staging composer:initialize ## (will run install & dumpautoload)
```
* Clear View / Clear Cache Framework
```
cap [environment] artisan:[clear_view|clear_cache|clear_all]
---
cap staging artisan:clear_view
cap staging artisan:clear_cache
cap staging artisan:clear_all ## (will run clear_view & clear_cache)
```
* NPM Package Dependencies
```
cap [environment] npm:[install|update|cleanup|reinstall]
---
cap staging npm:install
cap staging npm:update
cap staging npm:cleanup
cap staging npm:reinstall ## (will run cleanup & install)
```
* Yarn Package Dependencies
```
cap [environment] yarn:[install|update|cleanup|reinstall]
---
cap staging yarn:install
cap staging yarn:update
cap staging yarn:cleanup
cap staging yarn:reinstall ## (will run cleanup & install)
```## How to Use Docker
### Running All Docker Compose
* Set environment `.env`
```
cp .env.example .env
```
* Running script docker container
```
./run-docker.sh
```
* Running for container deployment only
```
./run-deploy.sh
```### Running with Makefile
* Running docker compose
```
make run-docker
make run-deploy
```
* Stop docker compose
```
make stop-docker
make stop-deploy
```
* Remove docker compose
```
make remove-docker
make remove-deploy
```## Cleanup Environment
* Remove all container
```
docker-compose -f compose/app-compose.yml down
--- or ---
make remove
```
* Remove container deployment only
```
docker-compose -f compose/app-compose-deploy.yml down
--- or ---
make remove-deploy
```## Git Pipeline CI/CD
* Create secure PEM file for deployment
```
openssl rsa -in id_rsa -outform pem > ~/.ssh/id_rsa.pem
--- or ---
./run-encode.sh
```
* Added PEM file (myapp.pem) in `keys` folder
```
cp ~/.ssh/id_rsa.pem keys/myapp.pem
```
* GitLab Configuration Variable
: [.gitlab-ci.yml](.gitlab-ci.yml)
```
MYAPP_SSH_PRIVATE_KEY=
MYAPP_SSH_PUBLIC_KEY=
MYAPP_KNOWN_HOSTS=
```
* BitBucket Configuration Variable (base64 encode)
: [bitbucket-pipelines.yml](bitbucket-pipelines.yml)
```
MYAPP_SSH_PRIVATE_KEY=
MYAPP_SSH_PUBLIC_KEY=
MYAPP_KNOWN_HOSTS=
```
* CircleCI Configuration Variable
: [.circleci/config.yml](.circleci/config.yml)
```
MYAPP_SSH_PRIVATE_KEY=
MYAPP_SSH_PUBLIC_KEY=
MYAPP_KNOWN_HOSTS=
```
* OpenShift Configuration
: [.openshift/action_hooks](.openshift/action_hooks)
* Jenkins Configuration
: [jenkins/staging/Jenkinsfile](jenkins/staging/Jenkinsfile) for Staging and
[jenkins/production/Jenkinsfile](jenkins/production/Jenkinsfile) for Production, detail documentation refer to this
[link](jenkins/README.md)* Trigger Pipeline CI/CD
```
- Commit
git commit -m "[messages]"- Merge / Checkout Branch `dev-master` for production
git checkout dev-master
git merge [from_branch]
--- or ---
git branch -D dev-master # delete dev-master branch
git branch dev-master- Merge / Checkout Branch `dev-staging` for staging
git checkout dev-staging
git merge [from_branch]
--- or ---
git branch -D dev-staging # delete dev-staging branch
git branch dev-staging- Push all branch & tags
git push --all -u && git push --tags
```## Tested Environment
### Versioning
* Docker version
```
Docker version 19.03.13, build 4484c46d9d
```
* Docker-Compose version
```
docker-compose version 1.27.4, build 40524192
```
* Jenkins version
```
Jenkins 2.249.2
```## TODO
* [X] Pipeline CI/CD using Jenkins
* [ ] Provisioning with Terraform & Terragrunt
* [ ] Deployment with Helm Chart
* [ ] Deployment with K8S
* [ ] Add K8S Playground Sample## Properties
* Author : **Dwi Fahni Denni (@zeroc0d3)**
* License : **Apache ver-2**