Skip to content

Commit 59368d8

Browse files
authored
Merge pull request #303 from MerginMaps/iss_299_ee-hw-specs
MerginMaps EE page
2 parents c7a3201 + 063c37e commit 59368d8

File tree

9 files changed

+77
-8
lines changed

9 files changed

+77
-8
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<template>
2+
<span class="nospellcheck">Mergin Maps CE</span>
3+
</template>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<template>
2+
<a :href="`https://merginmaps.com/pricing-for-ce-and-ee`" target="_blank" class="nospellcheck">
3+
<span v-if="desc" v-html="desc"></span>
4+
<span v-else class="nospellcheck">Mergin Maps CE</span>
5+
</a>
6+
</template>
7+
8+
<script>
9+
export default {
10+
name: "CommunityPlatformNameLink",
11+
props: {
12+
id: {
13+
type: String,
14+
default: ''
15+
},
16+
desc: String
17+
}
18+
}
19+
</script>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<template>
2+
<span class="nospellcheck">Mergin Maps EE</span>
3+
</template>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<template>
2+
<a :href="`https://merginmaps.com/pricing-for-ce-and-ee`" target="_blank" class="nospellcheck">
3+
<span v-if="desc" v-html="desc"></span>
4+
<span v-else class="nospellcheck">Mergin Maps EE</span>
5+
</a>
6+
</template>
7+
8+
<script>
9+
export default {
10+
name: "EnterprisePlatformNameLink",
11+
props: {
12+
id: {
13+
type: String,
14+
default: ''
15+
},
16+
desc: String
17+
}
18+
}
19+
</script>

src/.vuepress/sidebar/en.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ module.exports = {
105105
children: [
106106
'/dev/customapp',
107107
'/dev/mergince',
108+
'/dev/merginmaps-ee/',
108109
'/dev/integration',
109110
'/dev/dbsync',
110111
'/dev/media-sync/',

src/dev/mergince.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@
33

44
SaaS <MainPlatformName /> service is a web platform for storage and synchronisation of data between mobile devices, <MainPlatformNameLink /> service and QGIS Desktop.
55

6-
There is also <MainPlatformName /> Community Edition (<MainPlatformName /> CE) that is licensed as open source software. The source code for <MainPlatformName /> CE can be modified and used for custom deployments. You can contribute your code to <GitHubRepo id="MerginMaps/mergin" />.
6+
There is also <MainPlatformName /> Community Edition (<CommunityPlatformNameLink />) that is licensed as open source software. The source code for <CommunityPlatformName /> can be modified and used for custom deployments. You can contribute your code to <GitHubRepo id="MerginMaps/mergin" />.
77

88
::: tip
9-
If you need more functionality than <MainPlatformName /> CE offers, explore our [subscription plans](../setup/subscriptions/).
9+
More information about <CommunityPlatformName /> and its features can be found on our [website](https://merginmaps.com/pricing-for-ce-and-ee) and in our blog [<MainPlatformName /> Community and Enterprise Editions](https://merginmaps.com/blog/introducing-mergin-maps-community-and-enterprise-editions).
10+
11+
Need more functionality than <CommunityPlatformNameLink /> offers? Explore our [subscription plans](https://merginmaps.com/pricing).
1012
:::
1113

1214
## How to deploy Mergin Maps CE
13-
**Interested in deploying <MainPlatformName /> CE?** You can start by going to <GitHubRepo id="MerginMaps/mergin" /> on GitHub and read instructions on how to deploy it for your platform.
15+
**Interested in deploying <CommunityPlatformName />?** You can start by going to <GitHubRepo id="MerginMaps/mergin" /> on GitHub and read instructions on how to deploy it for your platform.
1416

1517
:::tip
16-
Follow our [Migration Guides](./ce-migration/) to migrate from older versions to the latest version of <MainPlatformName /> CE.
18+
Follow our [Migration Guides](./ce-migration/) to migrate from older versions to the latest version of <CommunityPlatformName />.
1719
:::
1820
1921
### Start docker containers
@@ -124,20 +126,21 @@ Mergin Maps uses PostgreSQL database to store its data. Variables marked with st
124126
125127
## How to opt out of sending statistics
126128
<SinceBadge type="Server" version="2023.2" />
127-
By default, <MainPlatformName /> CE collects anonymous usage information to make the service better. There is a variable named `COLLECT_STATISTICS` that controls if statistics are collected and sent to <MainPlatformNameLink />.
129+
By default, <CommunityPlatformName /> collects anonymous usage information to make the service better. There is a variable named `COLLECT_STATISTICS` that controls if statistics are collected and sent to <MainPlatformNameLink />.
128130

129131
If you do not want to provide these data, you can opt-out any time by setting this variable to *false*
130132
```
131133
COLLECT_STATISTICS=false
132134
```
133135

134-
## Mergin Maps CE troubleshooting
136+
## Mergin Maps CE troubleshooting
137+
135138
### Mergin Maps CE server is not properly configured
136139
Did you get an error that the server is not properly configured?
137-
![CE server not configured error](./ce-server-not-configured.jpg "CE server not configured error")
140+
![Mergin Maps CE server not configured error](./ce-server-not-configured.jpg "Mergin Maps CE server not configured error")
138141

139142
1. Check if `MERGIN_BASE_URL` docker environment variable is assigned correctly.
140-
`MERGIN_BASE_URL` should contain the URL of your <MainPlatformName /> CE server.
143+
`MERGIN_BASE_URL` should contain the URL of your <CommunityPlatformName /> server.
141144

142145
2. Restart the container with the `MERGIN_BASE_URL` variable
143146

src/dev/merginmaps-ee/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Mergin Maps Enterprise Edition
2+
[[toc]]
3+
4+
Mergin Maps Enterprise Edition (<EnterprisePlatformName />) is a self-hosting option for those who want to run their own deployment of <MainPlatformNameLink />. <EnterprisePlatformNameLink /> is a containerised application which runs on a host machine using [`docker-compose`](https://docs.docker.com/compose/).
5+
6+
We recommend using a dedicated host machine with 8GB of memory. The requirements for CPU and persistent storage depend largely on the frequency of project updates and the anticipated size of the data you expect to store respectively.
7+
8+
:::tip
9+
**Interested in using <EnterprisePlatformName />?** More information about <EnterprisePlatformName />, its features and pricing can be found on our [website](https://merginmaps.com/pricing-for-ce-and-ee).
10+
11+
You can read more about <EnterprisePlatformName /> in our blog [<MainPlatformName /> Community and Enterprise Editions](https://merginmaps.com/blog/introducing-mergin-maps-community-and-enterprise-editions).
12+
:::

src/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ The ecosystem consist of various components:
8989
## For Developers
9090
- [Custom Mobile App](./dev/customapp/)
9191
- [Mergin Maps Community Edition](./dev/mergince/)
92+
- [Mergin Maps Enterprise Edition](./dev/merginmaps-ee/)
9293
- [Integrate Mergin Maps](./dev/integration/)
9394
- [PostgreSQL DB Sync](./dev/dbsync/)
9495
- [Media Sync](./dev/media-sync/)

src/misc/write-docs/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,14 @@ Use `<MainPlatformName />` component, transforms to <MainPlatformName />
406406

407407
Use `<MainPlatformNameLink />` component, transforms to <MainPlatformNameLink />
408408

409+
Use `<CommunityPlatformName />` component, transforms to <CommunityPlatformName />
410+
411+
Use `<CommunityPlatformNameLink />` component, transforms to <CommunityPlatformNameLink />
412+
413+
Use `<EnterprisePlatformName />` component, transforms to <EnterprisePlatformName />
414+
415+
Use `<EnterprisePlatformNameLink />` component, transforms to <EnterprisePlatformNameLink />
416+
409417
Use `<MobileAppName />` component, transforms to <MobileAppName />
410418

411419
Use `<QGISPluginName />` component, transforms to <QGISPluginName />

0 commit comments

Comments
 (0)