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
- Go to logicstudio.vexplor.com.
- Log in with your email and password.
- 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.
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
- Drag a table node from the Node Palette on the left side of the canvas.
- Click the node to open the Properties Panel on the right.
- Enter a table name. Example:
products
Add Columns
Add columns in the properties panel:
| Column Name | Type | Description |
|---|---|---|
name | VARCHAR | Product name |
code | VARCHAR | Product code |
price | INTEGER | Price |
category | VARCHAR | Category |
is_active | BOOLEAN | Active status |
- Configure each column's type, nullable setting, default value, etc.
id,created_at,updated_at, andtenant_idcolumns are created automatically.
Set Table Relationships (Optional)
Add a second table and define relationships between tables:
- Add a new table node. Example:
product_categories - Drag from the source table's port to the target table's port to create a relationship edge.
- 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:
- DDL Generation - Convert schemas to SQL
- DDL Execution - Create tables in the database
- API Generation - Auto-generate REST API code
- UI Generation - Generate management screen components
- Menu/Routes - Add entries to the sidebar menu
- 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
- Click the Add button.
- 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
- 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:
- Environment Setup - Configure organizations, departments, and user permissions.
- Solution Guide - Apply industry solution templates.
- Schema Designer - Learn more about canvas features.
- Workflow - Design business process automation.