yuria-n / PerfectMorning

An iOS app to find breakfast recipes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PerfectMorning

An iOS app for breakfast recipes.

App_UI

How to build our App with Xcode

Clone our repository in your local

  • Make a new folder for PerfectMorning
$ mkdir PerfectMorning
  • Go to your PerfectMorning directory
$ cd PerfectMorning
  • Clone our repository
$ git clone https://github.com/PerfectMorning/PerfectMorning.git

Install Carthage

  • Install homebrew
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Install Carthage
$ brew install carthage
  • Build libraries in your PerfectMorning directory
$ carthage update --platform iOS

Add your Yummly ID and API key

$ cd PerfectMorning
$ touch APIKeys.swift
  • Add the below codes on the APIKeys.swift
struct APIKeys {
    static let yummlyApiId = "YOUR YUMMLY ID"
    static let yummlyApiKey = "YOUR API KEY"
}

then, build it!

About

An iOS app to find breakfast recipes.


Languages

Language:Swift 100.0%