File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,19 +37,19 @@ kernel deploy my_app.py --env MY_ENV_VAR=my_value # Can add multiple env vars de
3737
3838<CodeGroup >
3939``` bash Typescript/Javascript
40- / project-root
41- | -- my_app.ts # Entrypoint file
42- | -- package.json
43- | -- .gitignore # Make sure to exclude dependency folders like node_modules
44- | -- tsconfig.json # If Typescript
45- ∟-- package-lock.json # Or bun.lock or pnpm-lock.yaml
40+ project-root/
41+ ├─ .gitignore # Exclude dependency folders like node_modules
42+ ├─ my_app.ts # Entrypoint file
43+ ├─ package.json
44+ ├─ tsconfig.json # If using TypeScript
45+ └─ bun.lock | package-lock.json | pnpm-lock.yaml # One of these lockfiles
4646```
4747
4848``` bash Python
49- / project-root
50- | -- my_app.py # Entrypoint file
51- | -- .gitignore # Make sure to exclude dependency folders like .venv
52- ∟-- requirements.txt # or pyproject.toml or uv.lock
49+ project-root/
50+ ├─ .gitignore # Exclude dependency folders like .venv
51+ ├─ my_app.py # Entrypoint file
52+ └─ pyproject.toml
5353```
5454</CodeGroup >
5555
You can’t perform that action at this time.
0 commit comments