Keep track of your favorite movies and tv shows on your iPhone
Run the following commands
-
git clone [email protected]:pietrocaselani/CouchTracker.git
-
cd CouchTracker && sh setup.sh && bundle exec pod install
-
open CouchTracker.xcworkspace
-
To run the app, please create a file at
CouchTrackerApp/Utils/Secrets.swift
with yours API keys like this
enum Secrets {
enum Trakt {
static let clientId = ""
static let clientSecret = ""
static let redirectURL = ""
}
enum TMDB {
static let apiKey = ""
}
enum TVDB {
static let apiKey = ""
}
}
Run the tests on CouchTrackerCore
target.