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
// create a bookmark with this value, or paste it directly in the address bar and press return | |
javascript:(() => {document.querySelector('[data-disable-with^=Loading]')?.click(); setTimeout(()=> document.querySelectorAll('.Details-content--closed').forEach(x => x.click()), 4000)})() |
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
fields @timestamp, @message | |
# Lambda | |
| filter @message not like "START RequestId" | |
| filter @message not like "END RequestId" | |
| filter @message not like "REPORT RequestId" | |
| filter @message not like "Injecting secret" | |
| filter @message not like "[Scout] Agent is starting" | |
# FPM |
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
<?php | |
/** | |
This Scheduler will run once every minute unlike the Heroku scheduler which only runs every 10 mintues. | |
To use this scheduler with Laravel 5.4+ add this file to /app/Console/Commands/RunScheduler.php | |
Register this file in app/Console/Kernel.php |
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
# CircleLink Health | |
# EHR Patient data template | |
# The sample below shows 5 test patients. It does not contain any PHI. | |
# This file will be read line by line. | |
# Each line should contain a valid json string. Special characters should be escaped. | |
# ONLY include ACTIVE patients in the report | |
# All dates should be in UTC format. Example `2018-09-12T15:08:56.349Z` | |
# Phone numbers should not contain extensions. |
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
# Create a shared vendor directory and symlink it to the project root | |
mkdir -p $SHARED/vendor | |
ln -s $SHARED/vendor $RELEASE/vendor | |
# Create a shared storage directory and symlink it to the project root | |
if [ ! -d "$SHARED/storage" ]; then | |
mkdir -p $SHARED/storage | |
mv storage/* $SHARED/storage/ | |
chmod -R 775 $SHARED/storage |