add direnv
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3m16s

This commit is contained in:
Sebastian Hugentobler 2025-04-29 09:53:49 +02:00
parent 19af0b8d3e
commit 033a3e2c72
Signed by: shu
SSH Key Fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M
4 changed files with 30 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use flake

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
target
result
.direnv

11
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "run"
}
]
}

17
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"type": "shell",
"command": "cargo",
"args": ["run", "--", "-l", "[::]:3000", "--", "~/Documents/Library/"],
"options": {
"env": {
"RUST_LOG": "debug"
}
}
}
]
}