Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vkuznet/myfirstswiftapp
https://github.com/vkuznet/myfirstswiftapp
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vkuznet/myfirstswiftapp
- Owner: vkuznet
- License: mit
- Created: 2020-08-31T17:33:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-01T12:55:12.000Z (over 4 years ago)
- Last Synced: 2024-10-30T06:27:34.931Z (3 months ago)
- Language: Swift
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### MyFirstSwiftApp
This is a demo of simple app to use [MyFirstSwiftLibrary](https://github.com/vkuznet/MyFirstSwiftLibrary). Here are the steps:
```
# create a new git repository and clone it
git clone https://github.com/vkuznet/MyFirstSwiftApp
cd MyFirstSwiftApp# initialize your area as swift package executable
swift package init --type executable# adjust Package.swift and source code (see this repo)
# build your code
swift build# run your code
swift run# show dependencies
swift package show-dependencies# clean-up your build area
swift package clean
```