Skip to content

marvelapp/MarvelForKeynote

Repository files navigation

Marvel for Keynote

Marvel for Keynote is an open-source Mac app to send your Keynote files to Marvel - a design collaboration platform that brings ideas to life.

Download it here

Why it's so amazing

  • Send your Keynote files to Marvel so people without Keynote can view your presentation.
  • Create quick wireframes in Keynote and finish them off as a prototype in Marvel

Built using the Marvel GraphQL API - get started here.

Questions? Hit us up on Twitter

🎒 Before building (dependencies)

  • Install Xcode
  • Install CocoaPods
  • Run pod install
  • Add a Secrets.swift file inside the Config folder and change the details

Example:

class Secrets {

    class Marvel {

        static let baseURL = "https://marvelapp.com"
        static let clientId = ""
        static let clientSecret = ""
        static let scopes = "user:read projects:read projects:write company:read company.projects:read"
        static let redirectURI = "m4k://redirect"

    }

}

🚧 Building

  • Run the MarvelForKeynote target in Xcode from the .workspace file.