mirror of
https://github.com/apache/superset.git
synced 2026-06-06 08:09:14 +00:00
26 lines
496 B
Django/Jinja
26 lines
496 B
Django/Jinja
{
|
|
"id": "{{ id }}",
|
|
"name": "{{ name }}",
|
|
"version": "{{ version }}",
|
|
"license": "{{ license }}",
|
|
{% if include_frontend -%}
|
|
"frontend": {
|
|
"contributions": {
|
|
"commands": [],
|
|
"views": {},
|
|
"menus": {}
|
|
},
|
|
"moduleFederation": {
|
|
"exposes": ["./index"]
|
|
}
|
|
},
|
|
{% endif -%}
|
|
{% if include_backend -%}
|
|
"backend": {
|
|
"entryPoints": ["{{ id }}.entrypoint"],
|
|
"files": ["backend/src/{{ id }}/**/*.py"]
|
|
},
|
|
{% endif -%}
|
|
"permissions": []
|
|
}
|