23 lines
715 B
Text
23 lines
715 B
Text
|
|
# .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 = "vapora",
|
||
|
|
root = "/Users/Akasha/Development/vapora",
|
||
|
|
|
||
|
|
# Paths passed as NICKEL_IMPORT_PATH when exporting NCL files from this project.
|
||
|
|
nickel_import_paths = [
|
||
|
|
"/Users/Akasha/Development/vapora",
|
||
|
|
"/Users/Akasha/Development/ontoref",
|
||
|
|
"/Users/Akasha/Development/ontoref/ontology",
|
||
|
|
],
|
||
|
|
|
||
|
|
# Auth keys. Generate hash: ontoref-daemon.bin --hash-password <password>
|
||
|
|
keys = [
|
||
|
|
# { role = 'admin, hash = "$argon2id$v=19$..." },
|
||
|
|
],
|
||
|
|
}
|