okh: Paths are repo-relative, not absolute [fix]
This commit is contained in:
parent
5251363591
commit
f602484e5f
36
okh.toml
36
okh.toml
|
@ -8,27 +8,27 @@ repo = "https://code.curious.bio/curious.bio/myzel-akustikabsorber.git"
|
||||||
license = "CC-BY-SA-4.0"
|
license = "CC-BY-SA-4.0"
|
||||||
licensor = "Curious Community Labs e. V."
|
licensor = "Curious Community Labs e. V."
|
||||||
organisation = "Curious Community Labs e. V."
|
organisation = "Curious Community Labs e. V."
|
||||||
readme = "/README.md"
|
readme = "README.md"
|
||||||
image = "/res/assets/media/img/FC5-Render-preview.webp"
|
image = "res/assets/media/img/FC5-Render-preview.webp"
|
||||||
documentation-language = "de"
|
documentation-language = "de"
|
||||||
technology-readiness-level = "OTRL-3"
|
technology-readiness-level = "OTRL-3"
|
||||||
documentation-readiness-level = "ODRL-2"
|
documentation-readiness-level = "ODRL-2"
|
||||||
function = "A prototype of an acoustic absorber made from mycelium composite material using organic residue"
|
function = "A prototype of an acoustic absorber made from mycelium composite material using organic residue"
|
||||||
user-manual = "/mod/README.md"
|
user-manual = "mod/README.md"
|
||||||
source = [ "/src/mech" ]
|
source = [ "src/mech" ]
|
||||||
bom = "/bom.csv"
|
bom = "bom.csv"
|
||||||
tsdc = [ "3DP", "LAS", "ASM" ]
|
tsdc = [ "3DP", "LAS", "ASM" ]
|
||||||
|
|
||||||
[[part]]
|
[[part]]
|
||||||
name = "4_piece_negative_mould"
|
name = "4_piece_negative_mould"
|
||||||
image = "/mod/mould/direct_3D_negative_mould/res/assets/media/img/mould_3d_parts.webp"
|
image = "mod/mould/direct_3D_negative_mould/res/assets/media/img/mould_3d_parts.webp"
|
||||||
tsdc = "3DP"
|
tsdc = "3DP"
|
||||||
source = "/mod/mould/direct_3D_negative_mould/src/mech/pieceX.scad"
|
source = "mod/mould/direct_3D_negative_mould/src/mech/pieceX.scad"
|
||||||
export = [
|
export = [
|
||||||
"/mod/mould/direct_3D_negative_mould/src/mech/Negative-1-4-FC-5.4-Ultimaker.stl",
|
"mod/mould/direct_3D_negative_mould/src/mech/Negative-1-4-FC-5.4-Ultimaker.stl",
|
||||||
"/mod/mould/direct_3D_negative_mould/src/mech/Negative-2-4-FC-5.4-Ultimaker.stl",
|
"mod/mould/direct_3D_negative_mould/src/mech/Negative-2-4-FC-5.4-Ultimaker.stl",
|
||||||
"/mod/mould/direct_3D_negative_mould/src/mech/Negative-3-4-FC-5.4-Ultimaker.stl",
|
"mod/mould/direct_3D_negative_mould/src/mech/Negative-3-4-FC-5.4-Ultimaker.stl",
|
||||||
"/mod/mould/direct_3D_negative_mould/src/mech/Negative-4-4-FC-5.4-Ultimaker.stl",
|
"mod/mould/direct_3D_negative_mould/src/mech/Negative-4-4-FC-5.4-Ultimaker.stl",
|
||||||
]
|
]
|
||||||
printing-process = "FDM"
|
printing-process = "FDM"
|
||||||
material = "ABS" # TODO
|
material = "ABS" # TODO
|
||||||
|
@ -58,12 +58,12 @@ unit = "mm"
|
||||||
|
|
||||||
[[part]]
|
[[part]]
|
||||||
name = "direct_3D_negative_mould"
|
name = "direct_3D_negative_mould"
|
||||||
image = "/mod/mould/direct_3D_negative_mould/res/assets/media/img/mould_3d_parts.webp"
|
image = "mod/mould/direct_3D_negative_mould/res/assets/media/img/mould_3d_parts.webp"
|
||||||
tsdc = "3DP"
|
tsdc = "3DP"
|
||||||
source = "/3DParts/ClampRing/ClampRing.scad"
|
source = "3DParts/ClampRing/ClampRing.scad"
|
||||||
export = [
|
export = [
|
||||||
"/3DParts/ClampRing/ClampRing.pdf",
|
"3DParts/ClampRing/ClampRing.pdf",
|
||||||
"/3DParts/ClampRing/ClampRing.stl"
|
"3DParts/ClampRing/ClampRing.stl"
|
||||||
]
|
]
|
||||||
printing-process = "FDM"
|
printing-process = "FDM"
|
||||||
material = "ABS"
|
material = "ABS"
|
||||||
|
@ -84,9 +84,9 @@ unit = "g"
|
||||||
|
|
||||||
[[part]]
|
[[part]]
|
||||||
name = "PlanktoScope-Case"
|
name = "PlanktoScope-Case"
|
||||||
image = "/doc/images/hardware/planktoscope_case_00.png"
|
image = "doc/images/hardware/planktoscope_case_00.png"
|
||||||
tsdc = "CNC"
|
tsdc = "CNC"
|
||||||
source = "/hardware/case/PlanktoScope-Case.f3z"
|
source = "hardware/case/PlanktoScope-Case.f3z"
|
||||||
export = ["/hardware/case/PlanktoScope-Case.dxf"]
|
export = ["hardware/case/PlanktoScope-Case.dxf"]
|
||||||
outer-dimension-dim = "mm"
|
outer-dimension-dim = "mm"
|
||||||
outer-dimension = "cube(size = [350,150,150])"
|
outer-dimension = "cube(size = [350,150,150])"
|
||||||
|
|
Loading…
Reference in a new issue