This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1current_version := `git describe --tags --abbrev=0 | cut -c 2-` 2 3dev: 4 docker compose up -d 5 go mod tidy 6 go fmt 7 go run server/*.go 8 9build output="bin/server": 10 echo "Building version {{current_version}}" 11 just genprisma 12 go mod tidy 13 go build -v -ldflags="-X main.Version={{current_version}}" -o {{output}} server/*.go 14 15 16install: 17 just build 18 cp bin/server ~/.local/bin/notella 19 20updateschema url="https://git.inpt.fr/churros/churros/-/raw/main/packages/db/prisma/schema.prisma": 21 curl -fsSL {{url}} -o schema.prisma 22 sed -i '/^generator .* {/,/^}/d' schema.prisma 23 sed -i '1i\ 24 generator goprisma {\n\ 25 provider = "go run github.com/steebchen/prisma-client-go"\n\ 26 previewFeatures = ["fullTextSearchPostgres", "postgresqlExtensions"]\n\ 27 }\ 28 ' schema.prisma 29 go run github.com/steebchen/prisma-client-go format 30 31 32genprisma: 33 go get github.com/steebchen/prisma-client-go 34 go run github.com/steebchen/prisma-client-go generate 35 36gen_typescript: 37 go run scripts/typing.go 38 39generate: 40 just updateschema 41 just gen_typescript 42 43release_typescript: 44 just gen_typescript 45 git add *.ts 46 git commit -m "chore: update typescript types" 47 npm version minor 48 npm publish --access=public 49 git push 50 git push --tags