Launch
Deploying
Kernel’s deployment process is as simple as it is fast. We take your code from local to production in 2 seconds or less: no configuration files to manage, no complex CI/CD pipelines to set up. Just deploy and go.
Once you deploy an app on Kernel, you can schedule its actions on a job or run them from other contexts. You can also run actions multiple times in parallel by making multiple invocations as needed.
Deploy the app
Use the CLI from the root directory of your project:
It assumes the root directory contains at least this file structure:
Deployment notes
- The
entrypoint_file_name
is the file name where you defined your app. - Include a
.gitignore
file to exclude dependency folders likenode_modules
and.venv
.
Environment variables
You can set environment variables for your app using the --env
flag. For example:
Once deployed, you can invoke it from anywhere.
See the CLI reference for full details.