This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/sh | |
| # | |
| # /etc/rc.d/init.d/supervisord | |
| # | |
| # Supervisor is a client/server system that | |
| # allows its users to monitor and control a | |
| # number of processes on UNIX-like operating | |
| # systems. | |
| # | |
| # chkconfig: - 64 36 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | [program:myqueue] | |
| command=php artisan queue:listen --env=your_environment | |
| directory=/path/to/laravel | |
| stdout_logfile=/path/to/laravel/app/storage/logs/myqueue_supervisord.log | |
| redirect_stderr=true | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/sh | |
| # | |
| # ghost - this script starts and stops the ghost npm daemon | |
| # | |
| # chkconfig: - 85 15 | |
| # description: Ghost - just another blog | |
| # processname: ghost | |
| # pidfile: /var/run/ghost.pid | |
| # Source function library. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * Simple jQuery Table Sorter | |
| */ | |
| (function($){ | |
| $(document).ready(function(){ | |
| // Table Sorter | |
| $('table.sortable').each(function () { | 
NewerOlder