alpha
Login
or
Join now
kacaii.dev
/
sigo
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
lustre
gleam
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
:hammer: silent `deps-update` recipes
author
kacaii.dev
date
3 months ago
(Apr 12, 2026, 5:01 PM -0300)
commit
64b589ad
64b589adac6e080e14a1095ac4a36fb5f7fbcd4e
parent
01526de6
01526de67d607eb3c421c59937f4f7fe5686e9f5
change-id
psxosuqm
psxosuqmpzklrtppmtnzslzmoyrrrqoq
0/2
fmt.yml
pending
32s
test.yml
pending
50s
+3
-3
3 changed files
Expand all
Collapse all
Unified
Split
client
justfile
server
justfile
shared
justfile
+1
-1
client/justfile
View file
Reviewed
···
12
12
_test:
13
13
gleam test
14
14
15
15
-
_deps-update:
15
15
+
@_deps-update:
16
16
gleam deps update
17
17
18
18
@_lint:
+1
-1
server/justfile
View file
Reviewed
···
35
35
36
36
# Update project dependencies
37
37
[group("dev")]
38
38
-
deps-update:
38
38
+
@_deps-update:
39
39
gleam deps update
40
40
41
41
# Build the server container image
+1
-1
shared/justfile
View file
Reviewed
···
3
3
_default:
4
4
just --list
5
5
6
6
-
_deps-update:
6
6
+
@_deps-update:
7
7
gleam deps update
8
8
9
9
@_lint: