Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dfreniche/SwiftCLITemplate
A Tuist Template to quickly create CLI apps in Swift
https://github.com/dfreniche/SwiftCLITemplate
Last synced: 13 days ago
JSON representation
A Tuist Template to quickly create CLI apps in Swift
- Host: GitHub
- URL: https://github.com/dfreniche/SwiftCLITemplate
- Owner: dfreniche
- License: mit
- Created: 2021-10-26T10:47:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T21:34:39.000Z (6 months ago)
- Last Synced: 2024-08-01T13:17:03.279Z (4 months ago)
- Language: Swift
- Size: 16.6 KB
- Stars: 25
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-tuist - SwiftCLITemplate
README
# macOS CLI Template 🖥
## Motivation
I'm writing more and more Swift CLI apps these days. And as I solve more problems with these little tools, I find that I'm copying the same code and utilities from one project to the next. Also, I'm importing the same packages over and over. So I wanted to automate the creation of macOS Swift CLI Projects, and have kind of a "starter template Swift-based CLI Xcode Project"
## Prerequisites
This template uses Tuist to generate the project, so you need:
- Xcode 13 & 14 (not tested with other versions, should work)
- Make sure you're using the right Command Line Tools for the version of Xcode you're using. `xcode-select -p` prints the path to the Command Line Tools active. In Xcode Settings you can change the active ones.
- Install [Tuist](https://tuist.io/). I'm using Tuist 3, so if you already have Tuist installed check your version or run `tuist update`.## How to use it
- 👥 clone this repo with `git clone https://github.com/dfreniche/SwiftCLITemplate`
- 💻 rename that folder with `mv SwiftCLITemplate MyCLIApp`
- 💻 `cd SwiftCLITemplate` (or if you renamed, `cd MyCLIApp`)
- 📝 edit & change parameters in `Project.swift`
- 💻 run `tuist generate`
- 🛠 open generated project
- 🎉 profit!## What's in here
A simple CLI macOS App with an async starting point `AsyncMainCLI.swift`. It downloads an image and shows it using `open`. Review the code in `Sources` folder.
## Troubleshooting
- To generate the Project not using Tuist caches use:
```bash
tuist fetch && tuist generate --no-cache
```- if you get `"error: 'swiftpackagemanager': Invalid manifest"`
Apparently, after installing Xcode 14 on macOS Monterrey (12.6), Xcode path was incorrect:
Fixed it with the command:
```bash
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
```Source: [issue](https://github.com/dfreniche/SwiftCLITemplate/issues/1)