Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/vkuznet/myfirstswiftapp


https://github.com/vkuznet/myfirstswiftapp

Last synced: 30 days ago
JSON representation

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
```