Kernel’s app deployment process is as simple as it is fast. There are no configuration files to manage or complex CI/CD pipelines. Once you deploy an app on Kernel, you can schedule its actions on a job or run them from other contexts. You can even run actions multiple times in parallel.Documentation Index
Fetch the complete documentation index at: https://tbd-6fc993ce-mason-add-copy-page-to-context-menu.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Deploy the app
Use our CLI from the root directory of your project:Environment variables
You can set environment variables for your app using the--env flag. For example:
Deployment notes
- The
entrypoint_file_nameis the file name where you defined your app. - The entrypoint file and dependency manifest (
package.jsonfor JS/TS,pyproject.tomlfor Python) must both be in the root directory of your project. - Include a
.gitignorefile to exclude dependency folders likenode_modulesand.venv. - Kernel assumes the root directory contains at least this file structure:

