mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 14:00:08 +02:00
12 lines
272 B
Bash
Executable file
12 lines
272 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
echo "--------------------------"
|
|
echo "Flush project-history queue"
|
|
echo "--------------------------"
|
|
date
|
|
|
|
PROJECT_HISTORY_URL='http://127.0.0.1:3054'
|
|
|
|
curl -X POST "${PROJECT_HISTORY_URL}/flush/old?timeout=3600000&limit=5000&background=1"
|