Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hgq287/DTSwift

🛠 An useful project structure for creating effectively Swift applications
https://github.com/hgq287/DTSwift

cocoa configuration dependencies ios swift template-project

Last synced: 11 days ago
JSON representation

🛠 An useful project structure for creating effectively Swift applications

Awesome Lists containing this project

README

        

# Getting Started
Welcome to Swift Template, an useful project structure for creating effectively swift applications.

[![Carthage compatible](https://img.shields.io/badge/Carthage-Compatible-brightgreen.svg?style=flat)](https://github.com/Carthage/Carthage)
![Xcode 10.2+](https://img.shields.io/badge/Xcode-10.2%2B-blue.svg)
![iOS 12.2+](https://img.shields.io/badge/iOS-12.2%2B-blue.svg)
![Swift 5.0+](https://img.shields.io/badge/Swift-5.0%2B-orange.svg)

- Requirements:
- macOS: 14.1 (or higher)
- Xcode: 15.0.1 +
- Xcodegen: 2.38.0
- Carthage: 0.39.1

# Features
- An Advanced template
- An Generic Template for macosx App
- An Generic template for Command Line Tool

# Installation
- Clone repository: `$ git clone https://github.com/htq287/objectivec-template.git`
- Install your project:
- Point to template folder: `$ cd objectivec-template`
- Before installing the project, make sure [XCodegen](https://github.com/yonaskolb/XcodeGen), [Carthage](https://github.com/Carthage/Carthage#installing-carthage) and [Cocoapods](https://guides.cocoapods.org/using/getting-started.html) installed. If not yet installed, just run `$ make init-env`
- To create your project, just run:
- Advanced template
```sh
$ make install
```
- Generic template for Command Line Tool
```sh
$ make install_commandlinetool_template
```
- Generic template for macosx
```sh
$ make install_macosx_generic_template
```
- After created project, we'll need some the following steps
- Jump to your project folder
```sh
$ cd [Your Project]
```
- Re-generating the new `[Your Project].xcodeproj`
```sh
$ xcodegen
```
- To install the necessary dependencies:
```sh
$ pod install
```
- Well Done! let's start building your fantastic project.

# License
The MIT License (MIT)

Copyright (C) 2024, Hung Q. https://htq287.com. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.