Skip to main content

5-Minute Quick Start

This guide walks you through logging into VEXPLOR Logic Studio, creating your first table, deploying it, and verifying the working management screen.

Prerequisites

  • A VEXPLOR Logic Studio account (request from your administrator)
  • Latest Chrome, Edge, or Firefox

Step 1: Login and Onboarding

  1. Go to logicstudio.vexplor.com.
  2. Log in with your email and password.
  3. On first access, the Block Onboarding Wizard appears.

Block Selection in the Onboarding Wizard

The onboarding wizard has 2 steps:

  • Step 0: Review the platform introduction and industry presets. Selecting a preset for your industry (manufacturing, logistics, quality, etc.) auto-configures the relevant blocks.
  • Step 1: Select or adjust blocks individually. Review each block's detailed features and activate only the ones you need.
Quick Start

You can click Skip to go directly to the dashboard without selecting a preset. Blocks can be added later.

Step 2: Create a Table in Schema Designer

Click the Schema Designer menu from the dashboard to navigate to the canvas.

Add a Table Node

  1. Drag a table node from the Node Palette on the left side of the canvas.
  2. Click the node to open the Properties Panel on the right.
  3. Enter a table name. Example: products

Add Columns

Add columns in the properties panel:

Column NameTypeDescription
nameVARCHARProduct name
codeVARCHARProduct code
priceINTEGERPrice
categoryVARCHARCategory
is_activeBOOLEANActive status
  • Configure each column's type, nullable setting, default value, etc.
  • id, created_at, updated_at, and tenant_id columns are created automatically.

Set Table Relationships (Optional)

Add a second table and define relationships between tables:

  1. Add a new table node. Example: product_categories
  2. Drag from the source table's port to the target table's port to create a relationship edge.
  3. Set the relationship type (1:N, N:1, N:M).

Step 3: Deploy

Click the Deploy button at the top of the canvas.

Deployment Preview

Review what will be created before deploying:

  • Number of tables to be created
  • Number of API endpoints to be generated
  • Number of screens to be generated

Execute Deployment

Click Start Deployment to run the 6-stage pipeline sequentially:

  1. DDL Generation - Convert schemas to SQL
  2. DDL Execution - Create tables in the database
  3. API Generation - Auto-generate REST API code
  4. UI Generation - Generate management screen components
  5. Menu/Routes - Add entries to the sidebar menu
  6. Artifact Storage - Save generated code

Progress for each stage is displayed in real-time. The entire deployment typically completes within seconds.

Step 4: Manage Data in Runtime

After deployment completes, a new menu appears in the sidebar.

View Data List

Click the menu to open the Runtime View. An empty table is displayed where you can manage data.

Add Data

  1. Click the Add button.
  2. Enter data in the form. Appropriate input components are automatically provided for each field type:
    • VARCHAR: Text input
    • INTEGER: Number input
    • BOOLEAN: Switch toggle
    • FK reference: Dropdown selection
  3. Click Save.

Edit/Delete Data

  • Click a row in the list to open the detail view.
  • Use the Edit button to modify data.
  • Use the Delete button to remove data.

Next Steps

You have successfully deployed your first table. Try the following: