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
| import { defineConfig, devices } from "@playwright/test"; | |
| import { generateTestDatabaseUrl } from "~/db/generate-test-url"; | |
| import 'dotenv/config'; | |
| /** | |
| * Read environment variables from file. | |
| * https://github.com/motdotla/dotenv | |
| */ | |
| // require('dotenv').config(); |
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 | |
| gs \ | |
| -o output_duplex_ch6.pdf \ | |
| -dFirstPage=643 \ | |
| -dLastPage=726 \ | |
| -sDEVICE=pdfwrite \ | |
| -dBATCH \ | |
| -dNOPAUSE \ | |
| -dDEVICEWIDTHPOINTS=612 \ | |
| -dDEVICEHEIGHTPOINTS=792 \ |
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
| ''' | |
| This script downloads ComfyUI assets, including the IPAdapter_plus custom node and various models. | |
| It assumes you are running on Windows and places the files in a "comfyui" folder | |
| within your user's Documents directory. | |
| ''' | |
| import os | |
| import subprocess | |
| import requests | |
| from tqdm import tqdm # For progress bar, ensure it's installed: pip install tqdm |
OlderNewer