1. Prepare App

The app.json file serves as the core metadata configuration for the application. It defines essential details such as the app name, versioning, structure, components, supported reports, and settings. This file plays a crucial role in ensuring that the application is properly initialized, structured, and versioned according to the Fiscal Ox VS Code Extension workflow.

A sample app.json file might look something like this, laying the foundation for your application's structure and settings:

JSON

{

    "appId" : "",

    "name" : "Insert Name of app",

    "version" : "0.0.1",

    "description" : "",

    "formats" : ["Insert Report Formats"],

    "pages" : ["Insert All pages with camel case"],

    "components" : ["Insert All components with camel case"],

    "classes" : [],

    "profiles" : [],

    "settings" : [],

    "labels" : [],

    "reports" : [],

    "dashboards" : []

}

appId (string) – Initially left blank when creating the first app. Once the app is created, an ID will be automatically generated and assigned. When the user retrieves the app files in the future, this field will be populated with the generated app ID.

name (string) – Initially left blank when creating the first app. Once the app is created, an ID will be automatically generated and assigned. When the user retrieves the app files in the future, this field will be populated with the generated app ID.

version (string) – Follows a structured versioning system:

  • The last decimal place (0.0.X) increments for minor updates.
  • The second decimal place (0.X.0) increments for medium-level updates.
  • The first decimal place (X.0.0) increments for significant updates.

description (string) – A brief summary of what the application does or its purpose.

formats (array of strings) – Specifies the types of report formats the application supports. Some of the available formats include:

  • Analysis Report
  • Environment Monitoring
  • Equipment Calibration
  • Equipment Logbook
  • HR
  • Inventory
  • Invoice
  • Jobcard
  • Proforma Invoice
  • Purchase Order
  • Purchase Request
  • Quote

pages (array of strings) – Lists all pages in the application, formatted in camel case (e.g., dashboardPage, settingsPage).

components (array of strings) – Defines all reusable UI components in the application, also formatted in camel case (e.g., tableComponent, recordList, samplingSchedule).

2. Create App

Once all required details are added to app.json, users can create the app by triggering the "Create App" command in VS Code. This action is performed using the Fiscal Ox VS Code extension, which automates the process of generating the necessary app structure and files.

Use the Command Palette to execute the "Create App" command:

  • Windows/Linux: Press Ctrl + Shift + P, then type "Create App" and select the option.
  • Mac: Press Cmd + Shift + P, then type "Create App" and select the option.

3. AI App Review

As soon as the app is created using the "Create App" command, it is automatically submitted for AI review. This ensures that the app meets the required standards before it is deployed or used.

How the AI Review Works:

  • 1. Submission for Review:
  • Front-end: Scans JavaScript (JS) files to detect syntax errors, deprecated functions, and structural inconsistencies.
  • Back-end: Analyzes Java code for logical errors, security vulnerabilities, and performance optimizations.
  • Coding Standards: Ensures adherence to industry best practices.
  • Flagging Issues: If coding standards are violated, the AI raises flags with specific issue descriptions.
  • 2. Automated Validation & Approval:
  • If the AI detects no issues, the app is approved instantly.
  • A confirmation message is displayed, indicating that the app is ready for further development or deployment.
  • 3. Rejection & Issue Reporting:
  • If the AI detects problems or inconsistencies, the app is rejected.
  • The AI generates a report listing the specific issues found.

4. Install App

Once the app has successfully passed the AI review, the next step is installation. The installation process ensures that the app is properly set up within the Fiscal Ox ecosystem.

1. Request Installation Link:

  • After the app is approved, the system provides a unique installation link.
  • Developers or users can request the installation link from the Fiscal Ox platform.
  • The link contains the necessary package details required for the installation process.

2. Follow the Installation Process:

  • a. Open the Installation Link:
  • Click on the provided link to begin the installation process.
  • b. Select the App Version:
  • If multiple versions of the app are available, choose the desired version from the list.
  • This ensures that users can install a specific version based on their requirements.
  • c. Confirm Installation:
  • The system will display the app details (name, selected version, components).
  • Click "Install" to proceed.