This repository has no description
0

Configure Feed

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

flake,appview: keep devshell asset copies out of the working copy

Signed-off-by: dawn <dawn@tangled.org>

author
dawn
date (Jul 21, 2026, 1:16 AM +0300) commit d0620060 parent 2ab1646b change-id vssqollr
+14 -8
+3
appview/pages/static/.gitignore
··· 1 + * 2 + !.gitignore 3 + !topbar-search.js
+11 -8
flake.nix
··· 391 391 ]; 392 392 shellHook = '' 393 393 export CC=${pkgs.stdenv.cc}/bin/cc 394 - mkdir -p appview/pages/static 395 - # temporary self-heal for workspaces that copied static assets as read-only 396 - [ -d appview/pages/static/icons ] && [ ! -w appview/pages/static/icons ] && chmod -R u+rwX appview/pages/static 397 - # no preserve is needed because watch-tailwind will want to be able to overwrite 398 - cp -fr --no-preserve=ownership,mode ${packages'.appview-static-files}/* appview/pages/static 399 - mkdir -p web/static 400 - rm -rf web/static/fonts web/static/logos 401 - cp -fr --no-preserve=ownership,mode ${packages'.web-static-files}/* web/static 394 + ( 395 + cd "$(git rev-parse --show-toplevel 2>/dev/null || pwd)" 396 + mkdir -p appview/pages/static 397 + # temporary self-heal for workspaces that copied static assets as read-only 398 + [ -d appview/pages/static/icons ] && [ ! -w appview/pages/static/icons ] && chmod -R u+rwX appview/pages/static 399 + # no preserve is needed because watch-tailwind will want to be able to overwrite 400 + cp -fr --no-preserve=ownership,mode ${packages'.appview-static-files}/* appview/pages/static 401 + mkdir -p web/static 402 + rm -rf web/static/fonts web/static/logos 403 + cp -fr --no-preserve=ownership,mode ${packages'.web-static-files}/* web/static 404 + ) 402 405 export TANGLED_OAUTH_CLIENT_KID="$(date +%s)" 403 406 export TANGLED_OAUTH_CLIENT_SECRET="$(${packages'.goat}/bin/goat key generate -t P-256 | grep -A1 "Secret Key" | tail -n1 | awk '{print $1}')" 404 407 # Make xcrun (Nix stub) able to find ld from the system Command Line Tools.