-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2d22b2
commit 7d38c9e
Showing
2 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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` | ||
|
||
|
@@ -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" | ||
} | ||
} | ||
``` | ||
|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ default_platform(:ios) | |
platform :ios do | ||
before_all do | ||
setup_circle_ci | ||
tuist generate | ||
pods | ||
end | ||
|
||
|