You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+44-24Lines changed: 44 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -4,42 +4,53 @@
4
4
5
5
### API Key
6
6
7
-
To run the application you need to supply an API key from [TMBD](https://developers.themoviedb.org/3/getting-started/introduction). When you get the key please add following variable to your local environment:
7
+
To run the application you need to supply an API key
8
+
from [TMBD](https://developers.themoviedb.org/3/getting-started/introduction). When you get the key
9
+
please add following variable to your local environment:
8
10
9
11
`` API_KEY_TMDB = Your API Key ``
10
12
11
-
How to set an environment variable in [Mac](https://medium.com/@himanshuagarwal1395/setting-up-environment-variables-in-macos-sierra-f5978369b255) / [Windows](https://www.architectryan.com/2018/08/31/how-to-change-environment-variables-on-windows-10/)
13
+
How to set an environment variable
14
+
in [Mac](https://medium.com/@himanshuagarwal1395/setting-up-environment-variables-in-macos-sierra-f5978369b255) / [Windows](https://www.architectryan.com/2018/08/31/how-to-change-environment-variables-on-windows-10/)
To maintain the style and quality of the code, are used the bellow static analysis tools. All of them use properly configuration and you find them in the project root directory `config/.{toolName}`.
18
+
To maintain the style and quality of the code, are used the bellow static analysis tools. All of
19
+
them use properly configuration and you find them in the project root
All these tools, except [Gradle Versions Plugin][gvPlugin], are integrated in [pre-commit git hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks), in order
26
-
ensure that all static analysis and tests passes before you can commit your changes. [Gradle Versions Plugin][gvPlugin] can be run optionally. To skip them for specific commit add this option at your git command:
30
+
All these tools, except [Gradle Versions Plugin][gvPlugin], are integrated
31
+
in [pre-commit git hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks), in order
32
+
ensure that all static analysis and tests passes before you can commit your
33
+
changes. [Gradle Versions Plugin][gvPlugin] can be run optionally. To skip them for specific commit
34
+
add this option at your git command:
27
35
28
36
```properties
29
37
git commit --no-verify
30
38
```
31
39
32
-
It's highly recommended to fix broken code styles. There is [a gradle task](/build.gradle#L57) which execute `ktlintFormat` and `spotlessApply` for you:
40
+
It's highly recommended to fix broken code styles. There is [a gradle task](/build.gradle#L57) which
41
+
execute `ktlintFormat` and `spotlessApply` for you:
33
42
34
43
```properties
35
44
./gradlew reformat
36
45
```
37
46
47
+
The pre-commit git hooks have exactly the same checks as [CircleCI](https://circleci.com/) and are
48
+
defined in this [script](/config/scripts/git-hooks/pre-commit.sh). This step ensures that all
49
+
commits comply with the established rules. However the continuous integration will ultimately be
50
+
validated that the changes are correct.
38
51
39
-
The pre-commit git hooks have exactly the same checks as [CircleCI](https://circleci.com/) and are defined in this [script](/config/scripts/git-hooks/pre-commit.sh). This step ensures that all commits comply with the established rules. However the continuous integration will ultimately be validated that the changes are correct.
40
-
41
-
42
-
If you want to know more about naming convention, code style and more please look at our [Android guideline](https://github.com/adessoTurkey/android-guideline) repository.
52
+
If you want to know more about naming convention, code style and more please look at
0 commit comments