qwc2 2025.4.2 → 2025.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -10
- package/package.json +1 -1
- package/scripts/dist.sh +1 -1
package/README.md
CHANGED
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
=================
|
|
3
3
|
|
|
4
4
|
## Introduction
|
|
5
|
-
QGIS Web Client (QWC) is a modular next generation responsive web client for QGIS Server, built with ReactJS and OpenLayers.
|
|
5
|
+
[QGIS Web Client (QWC)](https://github.com/qgis/qwc2) is a modular next generation responsive web client for QGIS Server, built with ReactJS and OpenLayers.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Alternatively, you can run QWC as part of the **[qwc-services Docker application](https://github.com/qwc-services/qwc-docker)**, which extends QWC with functionalities such as authentication, user management and editing.
|
|
7
|
+
The `qwc2` NPM package can be used as a dependency to build a custom QWC application, see [https://github.com/qgis/qwc2-demo-app](https://github.com/qgis/qwc2-demo-app) for an example.
|
|
10
8
|
|
|
11
9
|

|
|
12
10
|
|
|
@@ -60,9 +58,3 @@ Some examples of QWC production deployments:
|
|
|
60
58
|
## License
|
|
61
59
|
|
|
62
60
|
QWC is released under the terms of the [BSD license](https://github.com/qgis/qwc2/blob/master/LICENSE).
|
|
63
|
-
|
|
64
|
-
## Building a custom application
|
|
65
|
-
|
|
66
|
-
This repository contains the stock QWC application.
|
|
67
|
-
|
|
68
|
-
If you want to extend QWC with custom plugins etc, you can use this repository as a submodule and build your custom application on top, see [https://github.com/qgis/qwc2-demo-app](https://github.com/qgis/qwc2-demo-app) for an example.
|
package/package.json
CHANGED
package/scripts/dist.sh
CHANGED
|
@@ -12,7 +12,7 @@ cp -a icons/*.svg dist/icons/
|
|
|
12
12
|
cp -a static/translations/*.json dist/static/translations/
|
|
13
13
|
cp -a package.json dist/
|
|
14
14
|
cp -a LICENSE dist/
|
|
15
|
-
cp -a
|
|
15
|
+
cp -a README_npm.md dist/README.md
|
|
16
16
|
|
|
17
17
|
echo "Ready to publish!"
|
|
18
18
|
echo "Run publish in the dist folder to publish the package."
|