This is a placeholder webapp for the engine flow. There is no actual code here
Java 11, maven, Jetty 9.4
Ensure you have mvn install
ed in your maven local repo the artifact org.gluu.flowless:model
. The corresponding Java project is in the model
folder. The same goes for org.gluu.flowless:engine
.
Generate war: mvn package
Adjust to suit your needs:
export JETTY_HOME=~/Downloads/jetty/jetty-distribution-9.4.35.v20201120
(the path where jetty is installed)
Designate an existing directory (let's call it "at"
) where relevant engine assets will reside (more on this below), for example: ~/Downloads/jetty/jetty-base/at
.
Switch to a directory where a jetty base can be created and do:
java -jar $JETTY_HOME/start.jar --create-startd
java -jar $JETTY_HOME/start.jar --add-to-start=jsp,servlet,http,deploy,console-capture
cd webapps
copy the file flowless_web_resources.xml
in the current directory and adjust resourceBase
accordingly
copy the war file as well, or: mkdir webapp && cd webapp && jar -xf path_to_war_file
(exploded strategy)
Copy the contents of at
folder (found alongside this README file) to your local at
.
Inside at
there is:
actions
: The existing actionsfl
: the parent path for all flow's assetsflows
: the flows themselves.scripts
: the root for the file-based Groovy script engine
Note that flows
contains files of 3 kinds:
- <flow name> (extensionless): flow's coded in DSL
- <flow name>.json: flow's metadata
- <flow name>.js file: flow's transpiled code (only used by the engine, shouldn't be edited or displayed anywhere). See
engine
README to learn more
At the top level some default freemarker templates can be found as well as utility JS server-side code.
This component is not essential but allows to launch registered flows quickly instead of crafting urls by hand, and also to navigate the catalog of flows, actions, and assets.
Read the playground
README for instructions.
java -Dbase=/path/to/your/at/folder... -jar $JETTY_HOME/start.jar
Visit the playground app, say http://localhost:8080/playground/
and have fun
When running, there will be a general log (engine.log) and a flow's log (flow.log). The latter will contain only the log statements issued in DSL code (ie. Log "Hello"
). See log4j.xml
Note flows run all under the url http://localhost:8080/webapp/fl