Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/district09/robo-digipolis-laravel

The Laravel task runner implementation. Extends robo-digipolis-helpers and implements the abstract functions to make the entire flow Laravel specific.
https://github.com/district09/robo-digipolis-laravel

d09check22 laravel robo robo-digipolis-laravel robo-tasks web

Last synced: 13 days ago
JSON representation

The Laravel task runner implementation. Extends robo-digipolis-helpers and implements the abstract functions to make the entire flow Laravel specific.

Awesome Lists containing this project

README

        

# Robo Digipolis Laravel

[![Latest Stable Version](https://poser.pugx.org/digipolisgent/robo-digipolis-laravel/v/stable)](https://packagist.org/packages/digipolisgent/robo-digipolis-laravel)
[![Latest Unstable Version](https://poser.pugx.org/digipolisgent/robo-digipolis-laravel/v/unstable)](https://packagist.org/packages/digipolisgent/robo-digipolis-laravel)
[![Total Downloads](https://poser.pugx.org/digipolisgent/robo-digipolis-laravel/downloads)](https://packagist.org/packages/digipolisgent/robo-digipolis-laravel)
[![License](https://poser.pugx.org/digipolisgent/robo-digipolis-laravel/license)](https://packagist.org/packages/digipolisgent/robo-digipolis-laravel)

[![Build Status](https://travis-ci.org/digipolisgent/robo-digipolis-laravel.svg?branch=develop)](https://travis-ci.org/digipolisgent/robo-digipolis-laravel)
[![Maintainability](https://api.codeclimate.com/v1/badges/c2d97d51c6953451747b/maintainability)](https://codeclimate.com/github/digipolisgent/robo-digipolis-laravel/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/c2d97d51c6953451747b/test_coverage)](https://codeclimate.com/github/digipolisgent/robo-digipolis-laravel/test_coverage)
[![PHP 7 ready](https://php7ready.timesplinter.ch/digipolisgent/robo-digipolis-laravel/develop/badge.svg)](https://travis-ci.org/digipolisgent/robo-digipolis-laravel)

Used by digipolis, serving as an example.

This package contains a RoboFileBase class that can be used in your own
RoboFile. All commands can be overwritten by overwriting the parent method.

## Example

```php
'default',
'worker' => null,
]
) {
$collection = parent::digipolisDeployLaravel($arguments, $opts);
$collection->taskExec('/usr/bin/custom-post-release-script.sh');
return $collection;
}
}

```

## Available commands

Following the example above, these commands will be available:

```bash
digipolis:backup-laravel Create a backup of files (storage folder) and database.
digipolis:build-laravel Build a Laravel site and package it.
digipolis:clean-dir Partially clean directories.
digipolis:clear-op-cache Command digipolis:database-backup.
digipolis:database-backup Command digipolis:database-backup.
digipolis:database-restore Command digipolis:database-restore.
digipolis:deploy-laravel Build a Laravel site and push it to the servers.
digipolis:download-backup-laravel Download a backup of files (storage folder) and database.
digipolis:init-laravel-remote Install or update a Laravel remote site.
digipolis:install-laravel Install the Laravel site in the current folder.
digipolis:package-project
digipolis:push-package Command digipolis:push-package.
digipolis:restore-backup-laravel Restore a backup of files (storage folder) and database.
digipolis:switch-previous Switch the current release symlink to the previous release.
digipolis:sync-laravel Sync the database and files between two Laravel sites.
digipolis:theme-clean
digipolis:theme-compile
digipolis:update-laravel Executes database updates of the Laravel site in the current folder.
digipolis:upload-backup-laravel Upload a backup of files (storage folder) and database to a server.
```