-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68a3c6d
commit d381df5
Showing
9 changed files
with
79 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
TOKEN=2cbc5771-38f2-4dcf-8774-50ad51a971b8 | ||
ENABLE_API_GET=true | ||
WORKSPACE_DELETE_EXPIRED=true | ||
WORKSPACE_EXPIRE_DAYS=1 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/.env |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ARG CONTAINER_VERSION=${CONTAINER_VERSION} | ||
FROM browserless/chrome:${CONTAINER_VERSION} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
[program:application-name] | ||
[program:schedule_blog] | ||
process_name=%(program_name)s_%(process_num)02d | ||
command=php /var/www/html/blog/artisan schedule:run >> /dev/null 2>&1 | ||
command=php /var/www/html/blog/artisan schedule:run | ||
autostart=true | ||
autorestart=true | ||
numprocs=2 | ||
redirect_stderr=true | ||
numprocs=1 | ||
redirect_stderr=true | ||
stopwaitsecs=3600 | ||
[program:schedule_rent] | ||
process_name=%(program_name)s_%(process_num)02d | ||
command=php /var/www/html/rent/artisan schedule:run | ||
autostart=true | ||
autorestart=true | ||
numprocs=1 | ||
redirect_stderr=true | ||
stopwaitsecs=3600 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,24 @@ | ||
[program:application-name] | ||
[program:blog_default] | ||
process_name=%(program_name)s_%(process_num)02d | ||
command=php /var/www/html/blog/artisan queue:work --sleep=3 --tries=3 --daemon | ||
command=php /var/www/html/blog/artisan queue:work --queue=default --sleep=3 --tries=3 | ||
autostart=true | ||
autorestart=true | ||
numprocs=8 | ||
redirect_stderr=true | ||
numprocs=1 | ||
redirect_stderr=true | ||
stopwaitsecs=3600 | ||
[program:rent_default] | ||
process_name=%(program_name)s_%(process_num)02d | ||
command=php /var/www/html/rent/artisan queue:work --queue=default --sleep=3 --tries=3 --daemon | ||
autostart=true | ||
autorestart=true | ||
numprocs=1 | ||
redirect_stderr=true | ||
stopwaitsecs=3600 | ||
[program:rent_emails] | ||
process_name=%(program_name)s_%(process_num)02d | ||
command=php /var/www/html/rent/artisan queue:work --queue=emails --sleep=3 --tries=3 --daemon | ||
autostart=true | ||
autorestart=true | ||
numprocs=1 | ||
redirect_stderr=true | ||
stopwaitsecs=3600 |
This file contains 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