Skip to content

Commit

Permalink
Update readme and Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrocaselani committed May 18, 2019
1 parent d2d22b2 commit 7d38c9e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
21 changes: 13 additions & 8 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,19 @@ Keep track of your favorite movies and tv shows on your iPhone
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=io.github.pietrocaselani.couchtracker&metric=alert_status)](https://sonarcloud.io/dashboard?id=io.github.pietrocaselani.couchtracker)
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](https://twitter.com/pietropc_)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpietrocaselani%2FCouchTracker.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpietrocaselani%2FCouchTracker?ref=badge_shield)
[![Tuist Badge](https://img.shields.io/badge/powered%20by-Tuist-green.svg?longCache=true)](https://github.com/tuist)

## Setup for development

Run the following commands

* `git clone [email protected]:pietrocaselani/CouchTracker.git`

* `cd CouchTracker && sh setup.sh && bundle exec pod install`
* `cd CouchTracker && sh setup.sh`

* `tuist generate`

* `bundle exec pod install`

* `open CouchTracker.xcworkspace`

Expand All @@ -26,21 +31,21 @@ Run the following commands
```swift
enum Secrets {
enum Trakt {
static let clientId = ""
static let clientSecret = ""
static let redirectURL = ""
static let clientId = "API_KEY"
static let clientSecret = "API_KEY"
static let redirectURL = "API_KEY"
}

enum TMDB {
static let apiKey = ""
static let apiKey = "API_KEY"
}

enum TVDB {
static let apiKey = ""
static let apiKey = "API_KEY"
}

enum Bugsnag {
static let apiKey = ""
static let apiKey = "API_KEY"
}
}
```
Expand All @@ -63,4 +68,4 @@ The project is split into a few frameworks


## License
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpietrocaselani%2FCouchTracker.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpietrocaselani%2FCouchTracker?ref=badge_large)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpietrocaselani%2FCouchTracker.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpietrocaselani%2FCouchTracker?ref=badge_large)
1 change: 1 addition & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ default_platform(:ios)
platform :ios do
before_all do
setup_circle_ci
tuist generate
pods
end

Expand Down

0 comments on commit 7d38c9e

Please sign in to comment.