Skip to content

Commit 44a0201

Browse files
Update project_structure.md
1 parent 5d171d3 commit 44a0201

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

episodes/project_structure.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This create a following structure for us.
4949

5050
```toml
5151
[project]
52-
authors = ["Priyanka O <[email protected]>"]
52+
authors = ["Priyanka O"]
5353
name = "greet_me"
5454
version = "0.1.0"
5555
platforms = ["linux-64"]
@@ -60,8 +60,15 @@ python = ">=3.10"
6060

6161

6262
[tasks]
63-
start = "python -c 'print(\"Hello from greet_me!\")'"
63+
start = "python -c 'from my_package import happy; print(happy.greet_happy())'"
6464
```
65+
```bash
66+
pixi run start
67+
```
68+
```output
69+
Yay! happy day! 😀
70+
```
71+
6572
Lets install the dependencies now, which wiil generate the `pixi.lock` file
6673
```bash
6774
pixi install

0 commit comments

Comments
 (0)