File tree 1 file changed +14
-8
lines changed 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -54,18 +54,24 @@ If you have not created this file yet, please do so from the provided `.env.temp
54
54
``` shell
55
55
cp .env.template .prod.env
56
56
```
57
+ Once the necessary variables are configured, you can run the following commands to start the <MainPlatformName /> stack.
58
+
59
+ Community edition stack:
57
60
58
- Once configured, you can run:
59
61
``` shell
60
- # For community edition
61
- $ mkdir -p mergin_db # or wherever you set it to be
62
- $ sh ../common/set_permissions.sh projects
62
+ $ mkdir -p mergin_db # database data directory
63
+ $ sh ../common/set_permissions.sh projects # application internal data directory
64
+ $ sh ../common/set_permissions.sh diagnostic_logs # directory to persist diagnostic logs (optional)
63
65
$ docker-compose -f docker-compose.yml up -d
66
+ ```
64
67
65
- # For enterprise edition
66
- $ mkdir -p mergin-db-enterprise # or wherever you set it to be
67
- $ sh ../common/set_permissions.sh data
68
- $ sh ../common/set_permissions.sh map_data
68
+ Enterprise edition stack:
69
+
70
+ ``` shell
71
+ $ mkdir -p mergin-db-enterprise # database data directory
72
+ $ sh ../common/set_permissions.sh data # application internal data directory
73
+ $ sh ../common/set_permissions.sh map_data # maps data directory (neccessary for maps)
74
+ $ sh ../common/set_permissions.sh diagnostic_logs # directory to persist diagnostic logs (optional)
69
75
$ docker-compose -f docker-compose.yml up -d
70
76
$ docker-compose -f docker-compose.maps.yml up -d # Run maps stack separately
71
77
```
You can’t perform that action at this time.
0 commit comments