-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Mikhalchuk Grigoriy edited this page Apr 28, 2024
·
13 revisions
Welcome to the HateItOrRateIt wiki!
-
Original folder: the folder that is created upon creating the Product with
images, e.g.,
files/products/1_2024-01-18_15-49-21
-
Backup folder: the folder where the initial state of images is saved to be
accessed if we remove original images and want to revert everything
files/products/1_2024-01-18_15-49-21_backup
-
Temp folder: the folder where we store newly added images in the product
being edited, so that we can remove them easily in case of reverting.
e.g.,
files/products/1_2024-01-18_15-49-21_temp
- ./gradlew check
- ./gradlew jacocoAggregatedReport
- ./gradlew app:cAT
- ./gradlew data:db:cAT
- ./gradlew addKtlintCheckGitPreCommitHook
- Remove all local branches except the "master" for Windows:
git branch | %{ $_.Trim() } | ?{ $_ -ne 'master' } | %{ git branch -D $_ }
- Prepare google-services.json for github secrets
fun encodeFileToBase64(filePath: String): String {
val bytes = File(filePath).readBytes()
val result = Base64.getEncoder().encodeToString(bytes)
return result
}