Skip to content

iOS Trakt Client - Keep track of your favorite TV shows and movies on your iPhone. (Under development)

License

Notifications You must be signed in to change notification settings

pietrocaselani/CouchTracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CouchTracker

Keep track of your favorite movies and tv shows on your iPhone

Build Status codecov Twitter

Setup for development

Run the following commands

  • git clone [email protected]:pietrocaselani/CouchTracker.git

  • cd CouchTracker && sh setup.sh && bundle exec pod install

  • open CouchTracker.xcworkspace

  • This project uses the Trakt API, TMDB API and TVDB API

  • 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 = ""
  }
}

Running tests

Run the tests on CouchTrackerCore target.