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.
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
- Install Xcode
- Install CocoaPods
- Run
pod install
- Add a
Secrets.swift
file inside theConfig
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"
}
}
- Run the
MarvelForKeynote
target in Xcode from the .workspace file.