Skip to content

Commit

Permalink
docs: tuist setup
Browse files Browse the repository at this point in the history
  • Loading branch information
watt committed Dec 2, 2024
1 parent d4265d4 commit 6b7d087
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Internal

- Local development environment switched from CocoaPods to Tuist.

## [5.1.0] - 2024-11-25

### Added
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,26 @@ target MyTarget do
end
```

## Local Development

This project uses [Mise](https://mise.jdx.dev/) and [Tuist](https://tuist.io/) to generate a project for local development. Follow the steps below for the recommended setup for zsh.

```sh
# install mise
brew install mise
# add mise activation line to your zshrc
echo 'eval "$(mise activate zsh)"' >> ~/.zshrc
# load mise into your shell
source ~/.zshrc
# install dependencies
mise install

# only necessary for first setup or after changing dependencies
tuist install --path SampleApp
# generates and opens the Xcode project
tuist generate --path SampleApp
```

---

[Release instructions](./RELEASING.md)
Expand Down

0 comments on commit 6b7d087

Please sign in to comment.