Skip to content

Commit c3a4291

Browse files
committed
add missing changes
1 parent 78fcf04 commit c3a4291

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

docs/App-Custom-Ontimize-Overview.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ You can edit the ui/app/app_model.yaml file directly, or use the [provided model
201201

202202
Then, rebuild your application (Note: this will overwrite all files in your Ontimize app directory):
203203

204+
PRO TIP: create a new application (app-create) with the edited app_model.yaml and merge the changes for the selected components back into the original app.
204205
```bash
205206
ApiLogicServer app-build --app=app
206207
```
@@ -245,7 +246,12 @@ ApiLogicServer app-build --app=app2
245246
cd ui/app2
246247
npm start
247248
```
248-
249+
# Dockerize Yaml
250+
Each application already has a Dockerfile (which can be edited)
251+
```
252+
cd ui/{myapp}
253+
docker build -f Dockerfile -t {gitrepo}/{myappname} --rm .
254+
```
249255
# Appendices
250256

251257
## Yaml Model Editor
@@ -267,7 +273,7 @@ npm start
267273
#go to http://localhost:4298 (user: admin password: p)
268274
```
269275
## Ontimize app_model.yaml
270-
The app_model.yaml file is created during the "app-create" or "create" phase and is based on the ui/admin.yaml file. Each entity, column, and tab_group is exposed with additional metadata. When the "app-build" is invoked, these properties are used to populate the templates (html, scss, and typescript) for each page. If the "exclude" flag is set to 'false' - the entity or attribute will be excluded from the page. The "visible" column flag only applies to the Home table columns appearing in the grid.
276+
The app_model.yaml file is created during the "app-create" or "create" phase and is based on the react-admin ui/admin.yaml file. Each entity, column, and tab_group is exposed with additional metadata. When the "app-build" is invoked, these properties are used to populate the templates (html, scss, and typescript) for each page. If the "exclude" flag is set to 'false' - the entity, attribute, or relationship will be excluded from the page. The "visible" column flag only applies to the Home table columns appearing in the grid.
271277

272278
## Entity
273279
Use the Ontimize editor to exclude a selected entity or change the titles.

0 commit comments

Comments
 (0)