You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project uses the same base technology than Mendix uses to run application in Cloud Foundry (the [mendix cloudfoundry buildpack](https://github.com/mendix/cf-mendix-buildpack)).
73
+
This project uses the same base technology that Mendix uses to run application in Cloud Foundry (the [mendix cloudfoundry buildpack](https://github.com/mendix/cf-mendix-buildpack)).
72
74
73
75
* Compilation of a Mendix application from project sources
74
76
* Automatic generation of the configuration (_m2ee.yaml_)
@@ -83,25 +85,28 @@ This project uses the same base technology than Mendix uses to run application i
83
85
### Enabling licensed
84
86
85
87
If you wish to start your application with a non-trial license, please provide the additional environment variables
### Passing environment variables to your Mendix runtine
101
105
102
106
The default values for constants will be used as defined in your project. However, you can override them with environment variables. You need to replace the dot with an underscore and prefix it with MX_. So a constant like Module.Constant with value ABC123 could be set like this:
103
107
104
108
example:
109
+
105
110
```
106
111
docker run -it \
107
112
-p 8080:80 \
@@ -110,7 +115,7 @@ docker run -it \
110
115
-e MX_Module_Constant=ABC123 \
111
116
-e LICENSE_ID=<UUID> \
112
117
-e LICENSE_KEY=<LICENSE_KEY> \
113
-
mendix/mendix-buildpack:v1
118
+
mendix/mendix-buildpack:v1.2
114
119
```
115
120
116
121
### Configuring Custom Runtime Settings
@@ -120,13 +125,14 @@ To configure any of the advanced Custom Runtime Settings you can use setting nam
120
125
For example, to configure the ConnectionPoolingMinIdle setting to value 10, you can set the following environment variable:
0 commit comments