Skip to content

Commit 4eb5d36

Browse files
authored
Minor project fixes (#26)
1 parent 7d441fd commit 4eb5d36

File tree

6 files changed

+56
-67
lines changed

6 files changed

+56
-67
lines changed

.devcontainer/devcontainer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"vscode": {
99
"settings": {},
1010
"extensions": [
11-
"jetpack-io.devbox"
11+
"jetpack-io.devbox",
12+
"DavidAnson.vscode-markdownlint"
1213
]
1314
}
1415
},

.pages/archetypes/adr.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "{{ replace .Name "-" " " | title }}"
2+
title: "{{ replace .Name "_" " " | title }}"
33
date: "{{ time.Now.Format "2006-01-02" }}"
44
---
55

contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you want to recommend a tool, the place to start is to write an Architecture
1313
To add an ADR do the following:
1414

1515
```shell
16-
hugo new --kind adr <DesiredFolder>/ADRs/<NameOfADRFile>.md --source .pages
16+
hugo new --kind adr <Desired_Folder>/ADRs/<Name_Of_ADR_File>.md --source .pages
1717
```
1818

1919
Fill out the sections in the generated ADR

devbox.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.4/.schema/devbox.schema.json",
3-
"packages": ["hugo@latest"],
3+
"packages": ["hugo@latest", "go@latest"],
44
"shell": {
55
"init_hook": [
66
"echo 'Welcome to devbox!' > /dev/null"

devbox.lock

+51
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,57 @@
11
{
22
"lockfile_version": "1",
33
"packages": {
4+
"github:NixOS/nixpkgs/nixpkgs-unstable": {
5+
"resolved": "github:NixOS/nixpkgs/eb0e0f21f15c559d2ac7633dc81d079d1caf5f5f?lastModified=1743259260&narHash=sha256-ArWLUgRm1tKHiqlhnymyVqi5kLNCK5ghvm06mfCl4QY%3D"
6+
},
7+
"go@latest": {
8+
"last_modified": "2025-03-11T17:52:14Z",
9+
"resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#go",
10+
"source": "devbox-search",
11+
"version": "1.24.1",
12+
"systems": {
13+
"aarch64-darwin": {
14+
"outputs": [
15+
{
16+
"name": "out",
17+
"path": "/nix/store/ja4jxx60lh1qfqfl4z4p2rff56ia1c3c-go-1.24.1",
18+
"default": true
19+
}
20+
],
21+
"store_path": "/nix/store/ja4jxx60lh1qfqfl4z4p2rff56ia1c3c-go-1.24.1"
22+
},
23+
"aarch64-linux": {
24+
"outputs": [
25+
{
26+
"name": "out",
27+
"path": "/nix/store/8ply43gnxk1xwichr81mpgbjcd9a1y5w-go-1.24.1",
28+
"default": true
29+
}
30+
],
31+
"store_path": "/nix/store/8ply43gnxk1xwichr81mpgbjcd9a1y5w-go-1.24.1"
32+
},
33+
"x86_64-darwin": {
34+
"outputs": [
35+
{
36+
"name": "out",
37+
"path": "/nix/store/87yxrfx5lh78bdz393i33cr5z23x06q4-go-1.24.1",
38+
"default": true
39+
}
40+
],
41+
"store_path": "/nix/store/87yxrfx5lh78bdz393i33cr5z23x06q4-go-1.24.1"
42+
},
43+
"x86_64-linux": {
44+
"outputs": [
45+
{
46+
"name": "out",
47+
"path": "/nix/store/cfjhl0kn7xc65466pha9fkrvigw3g72n-go-1.24.1",
48+
"default": true
49+
}
50+
],
51+
"store_path": "/nix/store/cfjhl0kn7xc65466pha9fkrvigw3g72n-go-1.24.1"
52+
}
53+
}
54+
},
455
"hugo@latest": {
556
"last_modified": "2025-02-07T11:26:36Z",
657
"resolved": "github:NixOS/nixpkgs/d98abf5cf5914e5e4e9d57205e3af55ca90ffc1d#hugo",

docs/guide.md

-63
This file was deleted.

0 commit comments

Comments
 (0)