.sqlite3 ext

This commit is contained in:
Wouter Groeneveld 2022-11-12 10:17:24 +01:00
parent eec3c9da6d
commit 46f2624724
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ order by total desc
limit 5
"""
dbpath = "/var/www/goatcounter/db/goatcounter.db"
dbpath = "/var/www/goatcounter/db/goatcounter.sqlite3"
if len(sys.argv) > 1:
dbpath = sys.argv[1]

View File

@ -14,9 +14,9 @@
},
"scripts": {
"prenote": "node hooks/prenote.js",
"precommit": "node hooks/precommit.js",
"precompile": "python extras/popularposts.py > data/popularposts.json",
"precompile": "python3 extras/popularposts.py > data/popularposts.json",
"compile": "hugo --cleanDestinationDir --destination docs",
"predeploy": "/usr/local/bin/pagefind --source docs",
"deploy": "rsync --archive --delete docs/ /var/www/brainbaking/",