Getting started
Create Your First Application
A practical walkthrough for creating an application, installing the runtime, building a first flow, validating it, and publishing it.
The fastest way to learn Fluxyn is to build something real.
This walkthrough covers the full path from setup to release:
Create an Application
- Open Studio and sign in.
- On the Apps page, click
New Application. - Enter an application name such as
My Superb application. - Click
Create Application. - Open the application you just created.
Install the Runtime
- Inside the application, open the
Scripttab. - Copy the runtime snippet that Studio generates for the application.
- Add the script to your page.
- Save the file and reload the page.
- Confirm that the page loads with the Fluxyn runtime attached.
Build a Click Flow
- Click
New Flow. - Enter a flow name such as
Capture clicks. - In the left palette, find
Click TriggerunderTRIGGERSand drag it onto the canvas. - Select the trigger node and set the selector to
[data-tracking-label].
This will capture every element that has the attribute
data-tracking-label.
- Add a
Debug / Lognode from theUTILITYsection. - Connect the trigger output to the debug node.
- Set the debug message to
My button was clicked. - Next we will publish to see the changes in your page.
Release the Application
- Click
Create versionif you are not already editing an application branch. - Save the flow.
- Start Live Preview and confirm the behavior still matches the flow.
- Click the release action in the top bar.
- Confirm the production release when the Live Preview result is the one you want.
That is the basic Fluxyn lifecycle:
- create the application
- install the runtime
- define the behavior in a flow
- validate it against your page and in the debugger
- publish when you are confident
From here, a good next step is either learning the core concepts or trying one of the official vendor integrations.