-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
029cedd
commit 63aa6f1
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# config.public.mk | ||
|
||
# This file is public in git. No sensitive info allowed. | ||
# These variables are sourced in Makefile, following make-file conventions. | ||
# Be aware that this file does not follow python or bash conventions, so may appear a little unfamiliar. | ||
|
||
###### schema definition variables, used by makefile | ||
|
||
# Note: makefile variables should not be quoted, as makefile handles quoting differently than bash | ||
LINKML_SCHEMA_NAME=microscopemetrics_schema | ||
LINKML_SCHEMA_AUTHOR=Julio Mateos Langerak <[email protected]> | ||
LINKML_SCHEMA_DESCRIPTION=A schema for microscope-metrics, a python package for microscope QC | ||
LINKML_SCHEMA_SOURCE_PATH=src/microscopemetrics_schema/schema/microscopemetrics_schema.yaml | ||
LINKML_SCHEMA_GOOGLE_SHEET_ID= | ||
LINKML_SCHEMA_GOOGLE_SHEET_TABS= | ||
|
||
###### linkml generator variables, used by makefile | ||
|
||
## gen-project configuration file | ||
LINKML_GENERATORS_CONFIG_YAML= --config-file config.yaml | ||
|
||
## pass args if gendoc ignores config.yaml (i.e. --no-mergeimports) | ||
LINKML_GENERATORS_DOC_ARGS= | ||
|
||
## pass args to workaround genowl rdfs config bug (linkml#1453) | ||
## (i.e. --no-type-objects --no-metaclasses --metadata-profile rdfs) | ||
LINKML_GENERATORS_OWL_ARGS= | ||
|
||
## pass args to trigger experimental java/typescript generation | ||
LINKML_GENERATORS_JAVA_ARGS= | ||
LINKML_GENERATORS_TYPESCRIPT_ARGS= | ||
|