Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shell command #116

Merged
merged 31 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a2e1e61
wip: initial addition of the shell command
ruben-arts Jun 19, 2023
76e22c9
feat: improve shell command with enviroment variables.
ruben-arts Jun 20, 2023
fe360fa
docs: add a mention of the shell to the readme
ruben-arts Jun 20, 2023
a3b86d5
fmt
ruben-arts Jun 20, 2023
7d19817
Merge branch 'main' into feature/add_shell_command
ruben-arts Jun 20, 2023
c95ad88
add readme with shell example to turtlesim
ruben-arts Jun 20, 2023
1d6ad4c
Merge remote-tracking branch 'upstream/main' into feature/add_shell_c…
ruben-arts Jun 20, 2023
358b0ad
Merge remote-tracking branch 'upstream/main' into feature/add_shell_c…
ruben-arts Jun 20, 2023
dc33814
Use default system shell to run the activation scripts in the shell c…
ruben-arts Jun 20, 2023
87ab80b
fmt and ignore updates
ruben-arts Jun 20, 2023
0a56ac8
Merge remote-tracking branch 'upstream/main' into feature/add_shell_c…
ruben-arts Jun 21, 2023
0578bd4
fix: use correct executable
ruben-arts Jun 21, 2023
48dafba
Merge remote-tracking branch 'upstream/main' into feature/add_shell_c…
ruben-arts Jun 21, 2023
aeecb26
Merge remote-tracking branch 'upstream/main' into feature/add_shell_c…
ruben-arts Jun 22, 2023
32b8184
Merge remote-tracking branch 'upstream/main' into feature/add_shell_c…
ruben-arts Jun 23, 2023
b906bff
update rattler
ruben-arts Jun 23, 2023
dabc8a3
fix tests
ruben-arts Jun 23, 2023
621b52f
fix: use proper executable shell
baszalmstra Jun 23, 2023
de7a9f7
fix: fix add command
tdejager Jun 23, 2023
8fbd511
fix: formatting
tdejager Jun 23, 2023
625ff79
add authentication subcommand
wolfv Jun 20, 2023
2ce6765
update comment
wolfv Jun 22, 2023
22cfda1
small fixes
wolfv Jun 22, 2023
1d5c257
update documentation with global install
ruben-arts Jun 23, 2023
1138673
feat: sign and notarize the binary (#137)
wolfv Jun 23, 2023
7d07e32
refactor to install command and add manifest path
ruben-arts Jun 23, 2023
737c861
remove wrong docstring
ruben-arts Jun 23, 2023
d25bbdb
fix docs
ruben-arts Jun 23, 2023
92722ba
Merge branch 'main' into feature/add_shell_command
ruben-arts Jun 23, 2023
847d8dc
update lockfile with new rattler
ruben-arts Jun 23, 2023
e395a18
update lockfile with new rattler
ruben-arts Jun 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
.idea
.test-projects
__pycache__
.pixi
**/**/.pixi
123 changes: 61 additions & 62 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@ Run the installed package in its environment
pixi run cowpy "Thanks for using pixi"
```

Activate a shell in the environment
```shell
pixi shell
cowpy "Thanks for using pixi"
```

For more information check [the documentation](getting_started.md#basics-of-the-configuration-file)

## Installing a conda package globally
Expand Down
2 changes: 2 additions & 0 deletions examples/turtlesim/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# pixi environments
.pixi
Loading