[project]
name = "acme-api"
version = "0.1.0"
description = "Graph-aware code generation demo"
templates_dir = "templates"
output_dir = "generated"
[prefixes]
ex = "http://example.com/"
schema = "http://schema.org/"
foaf = "http://xmlns.com/foaf/0.1/"
rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
rdfs = "http://www.w3.org/2000/01/rdf-schema#"
owl = "http://www.w3.org/2002/07/owl#"
sh = "http://www.w3.org/ns/shacl#"
[rdf]
files = ["templates/**/graphs/*.ttl"]
inline = [
"@prefix ex: <http://example.com/> . ex:Widget a ex:Type .",
"@prefix schema: <http://schema.org/> . ex:Person a schema:Person .",
]
[vars]
author = "Acme Corp"
license = "MIT"
year = "2025"
company = "Acme Corporation"
email = "dev@acme.com"
[shell]
before = "echo 'Starting rgen run...'"
after = "echo 'rgen complete.'"