This file contains 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
# Beets config | |
# Album art manually saved to music folders from: https://covers.musichoarders.xyz | |
directory: R:/media/music | |
library: ~/iCloudDrive/beets/library.db | |
plugins: | |
## Autotagger Extensions | |
# https://beets.readthedocs.io/en/stable/plugins/discogs.html | |
- discogs |
This file contains 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 type { Prisma } from "@prisma/client" | |
import { redis } from "../redis" | |
type CacheMiddlewareOptions = { | |
model: Prisma.ModelName | |
action: Prisma.PrismaAction | |
keys?: string[] | |
defaultValues?: Record<string, unknown> | |
ttlInSeconds: number | |
} |
This file contains 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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"version": 2, | |
"console_title_template": "{{if .Root}}(Admin){{end}} {{.PWD}}", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ |