File size: 329 Bytes
c18b745
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

update_db() {
    while true; do
        echo "Updating database..."

        wget -O /workplace/zigistry.db.new "https://huggingface.co/buckets/Zigistry/Zigistry/resolve/zigistry.db?download=true"

        mv /workplace/zigistry.db.new /workplace/zigistry.db

        sleep 3600
    done
}

update_db &

exec ./server