19 lines
581 B
Plaintext
19 lines
581 B
Plaintext
|
|
# .ontoref/project.ncl — project self-registration for ontoref-daemon.
|
||
|
|
# Copy to your project's .ontoref/project.ncl and fill in the fields.
|
||
|
|
# Register: ontoref project-add /path/to/your/project
|
||
|
|
|
||
|
|
let s = import "ontoref-project.ncl" in
|
||
|
|
|
||
|
|
s.make_project {
|
||
|
|
slug = "my-project",
|
||
|
|
root = "/absolute/path/to/my-project",
|
||
|
|
|
||
|
|
# Paths passed as NICKEL_IMPORT_PATH when exporting NCL files from this project.
|
||
|
|
nickel_import_paths = [],
|
||
|
|
|
||
|
|
# Auth keys. Generate hash: ontoref-daemon.bin --hash-password <password>
|
||
|
|
keys = [
|
||
|
|
# { role = 'admin, hash = "$argon2id$v=19$..." },
|
||
|
|
],
|
||
|
|
}
|