alpha
Login
or
Join now
alice.pds.demo.boltless.dev
/
core
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
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
2
Pulls
1
Pipelines
use preBuild instead
author
Akshay
date
2 years ago
(Feb 17, 2025, 1:46 PM UTC)
commit
8a6e5cdc
8a6e5cdc3fb6789d328bab9cc7d40d0b53ca0b86
parent
baad9919
baad9919ae470cc8503fb42c2a18e6de5bfd5aa4
+2
-4
2 changed files
Expand all
Collapse all
Unified
Split
appview
pages
pages.go
flake.nix
+1
-3
appview/pages/pages.go
View file
Reviewed
···
64
64
return pairs, nil
65
65
},
66
66
"append": func(s []string, values ...string) []string {
67
67
-
for _, v := range values {
68
68
-
s = append(s, v)
69
69
-
}
67
67
+
s = append(s, values...)
70
68
return s
71
69
},
72
70
"timeFmt": humanize.Time,
+1
-1
flake.nix
View file
Reviewed
···
57
57
pname = "appview";
58
58
version = "0.1.0";
59
59
src = gitignoreSource ./.;
60
60
-
postConfigureHook = ''
60
60
+
preBuild = ''
61
61
cp -f ${htmx-src} appview/pages/static/htmx.min.js
62
62
cp -f ${lucide-src} appview/pages/static/lucide.min.js
63
63
${pkgs.tailwindcss}/bin/tailwindcss -i input.css -o appview/pages/static/tw.css