-
-
Notifications
You must be signed in to change notification settings - Fork 286
/
__manifest__.py
54 lines (54 loc) · 1.97 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright 2024 Camptocamp
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Geospatial Website store locator",
"version": "16.0.1.0.0",
"category": "GeoBI",
"author": "Camptocamp, Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/geospatial",
"depends": ["base_geoengine", "website", "partner_store", "website_geoengine"],
"data": [
"templates/snippets/s_openlayer_store_locator.xml",
"views/snippets.xml",
],
"assets": {
"web.assets_frontend": [
"website_geoengine_store_locator/static/lib/node_modules/ol/dist/ol.js",
(
"website_geoengine_store_locator/static/lib/node_modules/"
"jquery-flexdatalist/jquery.flexdatalist.js"
),
(
"website_geoengine_store_locator/static/src/scss/snippets/"
"s_openlayer_store_locator/frontend.scss"
),
(
"website_geoengine_store_locator/static/src/js/snippets/"
"s_openlayer_store_locator/frontend.esm.js"
),
(
"website_geoengine_store_locator/static/src/js/snippets/"
"s_openlayer_store_locator/popover.esm.js"
),
(
"website_geoengine_store_locator/static/src/js/snippets/"
"s_openlayer_store_locator/search.esm.js"
),
(
"website_geoengine_store_locator/static/src/js/snippets/"
"s_openlayer_store_locator/map.esm.js"
),
"/web/static/lib/stacktracejs/stacktrace.js",
],
"website.assets_wysiwyg": [
(
"website_geoengine_store_locator/static/src/js/snippets/"
"s_openlayer_store_locator/snippet.options.esm.js"
)
],
},
"maintainers": ["Wouitmil"],
"installable": True,
"application": True,
}