Skip to content

Commit efc6643

Browse files
authored
docs(deploy): update project structure examples (#25)
1 parent ffa9891 commit efc6643

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

apps/deploy.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)