Skip to content
Updated Developer Guide: Creating a custom project (markdown) authored by Rich Turner's avatar Rich Turner
...@@ -245,6 +245,14 @@ task installDist(type: Copy) { ...@@ -245,6 +245,14 @@ task installDist(type: Copy) {
dependsOn copyKeycloakThemes, copyManagerApp, copyManagerShared dependsOn copyKeycloakThemes, copyManagerApp, copyManagerShared
} }
``` ```
1. Create deployment Dockerfile with the following content:
```
# Default deployment when deployment-data volume is empty
FROM debian:stretch
ADD manager /deployment/manager
ADD keycloak /deployment/keycloak
ADD map /deployment/map
```
## Creating custom app, extensions and themes ## Creating custom app, extensions and themes
All frontend related code should be within a `ui` directory, copy the same directory layout as found in the `openremote` submodule and copy the following files: All frontend related code should be within a `ui` directory, copy the same directory layout as found in the `openremote` submodule and copy the following files:
... ...
......