From a355e12201f50d8f52738d225c270042913030e2 Mon Sep 17 00:00:00 2001 From: vnugent Date: Mon, 24 Jun 2024 16:46:04 -0400 Subject: ci: Consolidate ci configuration --- ci/config/SimpleBookmark.json | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 ci/config/SimpleBookmark.json (limited to 'ci/config/SimpleBookmark.json') diff --git a/ci/config/SimpleBookmark.json b/ci/config/SimpleBookmark.json deleted file mode 100644 index 2cb64bf..0000000 --- a/ci/config/SimpleBookmark.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - - //Comments are allowed - "debug": false, //Enables obnoxious debug logging - - "bm_endpoint": { - - "path": "/api/bookmarks", //Path for the bookmarks endpoint - - "config": { - "max_limit": 100, //Max results per page - "default_limit": 20, //Default results per page - "user_quota": 5000 //Max bookmarks per user - } - }, - - //System website lookup endpoint (aka curl) - "curl": { - "path": "/api/lookup", - "exe_path": "curl", //Path to the curl executable - "extra_args": [ - "--globoff", //Disables unsafe url globbing - "--no-keepalive", //Disables keepalive, uneeded for a single lookup request - "--max-filesize", "100K", //Max file size 100K - "--max-redirs", "5", //Max redirects 5 - "--location" //Follow redirects - ] - }, - - "registration": { - "path": "/api/register", //Path for the registration endpoint - "token_lifetime_mins": 360, //Token lifetime in minutes - "key_regen_interval_mins": 3600 //Signing key regeneration interval in minutes - } -} \ No newline at end of file -- cgit