PHP Classes

File: build/scripts/atlas.sh

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   build/scripts/atlas.sh   Download  
File: build/scripts/atlas.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 281 bytes
 

Contents

Class file image Download
#!/usr/bin/env bash case "$1" in application) apache2-foreground ;; scheduler) php artisan schedule:work ;; worker) php artisan queue:work --sleep=3 --tries=3 ;; *) echo "Usage: $0 {application|scheduler|worker}" exit 1 ;; esac exit 0