yarn install
./render.js https://fivethirtyeight.com 538.pdf
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
--- | |
name: "Repo Tickle Action" | |
on: | |
push: | |
pull_request: | |
jobs: | |
tickle-the-repo: | |
name: "Tickling the Repo 🪶" |
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 | |
# shellcheck shell=dash | |
# This script checks the compatibility of all modules in the modules directory with the specified FoundryVTT version. | |
# Constants | |
MODULES_DIR="/data/Data/modules" | |
TARGET_VERSION="12.331" | |
TARGET_VERSION_MAJOR=$(echo "$TARGET_VERSION" | cut -d. -f1) |
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/ash | |
# Touch-VTT Issue 61 Fix | |
# ===================== | |
PATCH_DOC_URL="https://github.com/Oromis/touch-vtt/issues/61" | |
PATCH_NAME="Fix for touch-vtt issue #61" | |
log "Applying \"${PATCH_NAME}\"" | |
log "See: ${PATCH_DOC_URL}" |
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/bash | |
# Initial list of domains | |
DOMAINS=("api.foundryvtt.com" | |
"foundryvtt.com" | |
"foundryvtt.s3.amazonaws.com" | |
"foundryvtt.s3.dualstack.us-west-2.amazonaws.com") | |
# Print the table header | |
echo "| Name | \`A\` | \`AAAA\` | Notes |" |
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 | |
log_debug "This is a debug message." | |
log "This is an info message." | |
log_warn "This is a warning message." | |
log_error "This is an error message." |
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
def init(id, cfg): | |
return True | |
def deinit(id): | |
return True | |
def inform_super(id, qstate, superqstate, qdata): | |
return True | |
domains = [ |
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
--- | |
version: "3.8" | |
secrets: | |
credentials: | |
file: credentials.json | |
services: | |
foundry_1: | |
image: felddy/foundryvtt:release |
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
{$SITE_ADDRESS} { | |
reverse_proxy foundry:30000 | |
tls {$LETSENCRYPT_EMAIL} { | |
# Comment out next line to use production CA | |
ca https://acme-staging-v02.api.letsencrypt.org/directory | |
} | |
} |
NewerOlder