Initial commit'

'
This commit is contained in:
Alexandre 2026-02-27 10:47:27 +01:00
parent d3805a3050
commit f83eb7ece7
11 changed files with 2182 additions and 0 deletions

19
.direnv/bin/nix-direnv-reload Executable file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -e
if [[ ! -d "/home/alex/Developer/Code/Web/Deepthstech" ]]; then
echo "Cannot find source directory; Did you move it?"
echo "(Looking for "/home/alex/Developer/Code/Web/Deepthstech")"
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
exit 1
fi
# rebuild the cache forcefully
_nix_direnv_force_reload=1 direnv exec "/home/alex/Developer/Code/Web/Deepthstech" true
# Update the mtime for .envrc.
# This will cause direnv to reload again - but without re-building.
touch "/home/alex/Developer/Code/Web/Deepthstech/.envrc"
# Also update the timestamp of whatever profile_rc we have.
# This makes sure that we know we are up to date.
touch -r "/home/alex/Developer/Code/Web/Deepthstech/.envrc" "/home/alex/Developer/Code/Web/Deepthstech/.direnv"/*.rc

View File

@ -0,0 +1 @@
/nix/store/01x5k4nlxcpyd85nnr0b9gm89rm8ff4x-source

View File

@ -0,0 +1 @@
/nix/store/19s26n18h8sp4pi92rpwfz9wzzgpvhcv-source

View File

@ -0,0 +1 @@
/nix/store/yj1wxm9hh8610iyzqnz75kvs6xl8j3my-source

View File

@ -0,0 +1 @@
/nix/store/zkrz054gvl1dcxkw25d8lgx8l10px665-source

View File

@ -0,0 +1 @@
/nix/store/lhqyq6817byaj499rmrxpydq0085ijci-nix-shell-env

File diff suppressed because it is too large Load Diff

3
.envrc Normal file
View File

@ -0,0 +1,3 @@
FLAKEDIR=~/Developer/nix/NixOSDots/dev-flakes
use flake ${FLAKEDIR}/web

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.alexdelcamp.fr/DepthsTech/v2
go 1.25.7

0
static/index.html Normal file
View File

0
static/style.css Normal file
View File