Skip to main content

JitNode Directory

JitNode uses a clear directory structure to organize executable programs and runtime data. Developers should have a basic understanding of JitNode's directory structure for better subsequent development, management, and debugging work.

In the desktop edition, the JitNode directory is located in the installation directory:

Path in MacOS
/Applications/Jit.app/Contents/Resources/app.asar.unpacked/JitNode
Path in Windows
C:\Program Files\jit\resources\app.asar.unpacked\JitNode

In the server edition, the JitNode directory is located in the Docker container:

Path in Docker Container
/data/JitNode

Typically, when deploying containers, the JitNode directory is mounted to the host machine, and developers can also find the JitNode directory in the corresponding directory on the host machine

Directory Overview

JitNode/
├── runJitNode.cmd/command # desktop edition one-click startup script
├── home/ # Runtime data directory
│ ├── version.json # Version information
│ ├── node.json # Configuration file
│ ├── environs/ # Runtime environments
│ └── logs/ # Runtime logs
└── system/ # Executable program directory

Quick Navigation

  • Deploy Applications: Place applications in the home/environs/[Environment ID]/[Organization ID]/[Application ID]/[Version]/ directory
  • View Logs: Check runtime logs in the home/logs/ directory
  • Debug Code: Desktop edition uses system/jitDebuger.py for debugging. For detailed usage methods, refer to Local Development and Debugging.
  • Configuration Modification: Edit home/node.json to modify JitNode configuration
JitAI AssistantBeta
Powered by JitAI