mirror of
https://github.com/pischule/memevizor.git
synced 2025-12-19 06:56:42 +00:00
Rename app to memevizor
This commit is contained in:
@@ -28,4 +28,4 @@ tasks:
|
|||||||
- ./gradlew assemble
|
- ./gradlew assemble
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build/libs/memes-tv-0.0.1-SNAPSHOT.jar
|
- build/libs/memevizor-0.0.1-SNAPSHOT.jar
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ java = "temurin-17"
|
|||||||
|
|
||||||
[tasks.release]
|
[tasks.release]
|
||||||
description = 'Build and push docker image'
|
description = 'Build and push docker image'
|
||||||
run = './gradlew build && ./gradlew jib --image=cr.yandex/crph26nr2d2ds65t2m7b/memes-tv:0.0.1-SNAPSHOT'
|
run = './gradlew build && ./gradlew jib --image=cr.yandex/crph26nr2d2ds65t2m7b/memevizor:0.0.1-SNAPSHOT'
|
||||||
|
|
||||||
[tasks.fmt]
|
[tasks.fmt]
|
||||||
description = 'Fourmat source code'
|
description = 'Fourmat source code'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
rootProject.name = "memes-tv"
|
rootProject.name = "memevizor"
|
||||||
|
|
||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
repositories {
|
repositories {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv
|
package com.pischule.memevizor
|
||||||
|
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication
|
import org.springframework.boot.autoconfigure.SpringBootApplication
|
||||||
import org.springframework.boot.runApplication
|
import org.springframework.boot.runApplication
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.bot
|
package com.pischule.memevizor.bot
|
||||||
|
|
||||||
import com.github.kotlintelegrambot.Bot
|
import com.github.kotlintelegrambot.Bot
|
||||||
import com.github.kotlintelegrambot.bot
|
import com.github.kotlintelegrambot.bot
|
||||||
@@ -6,9 +6,9 @@ import com.github.kotlintelegrambot.dispatch
|
|||||||
import com.github.kotlintelegrambot.dispatcher.message
|
import com.github.kotlintelegrambot.dispatcher.message
|
||||||
import com.github.kotlintelegrambot.dispatcher.photos
|
import com.github.kotlintelegrambot.dispatcher.photos
|
||||||
import com.github.kotlintelegrambot.entities.Message
|
import com.github.kotlintelegrambot.entities.Message
|
||||||
import com.pischule.memestv.bot.handler.PhotoHandlerService
|
import com.pischule.memevizor.bot.handler.PhotoHandlerService
|
||||||
import com.pischule.memestv.bot.handler.ThisCommandHandlerService
|
import com.pischule.memevizor.bot.handler.ThisCommandHandlerService
|
||||||
import com.pischule.memestv.util.getMaxResPhotoId
|
import com.pischule.memevizor.util.getMaxResPhotoId
|
||||||
import io.github.oshai.kotlinlogging.KotlinLogging
|
import io.github.oshai.kotlinlogging.KotlinLogging
|
||||||
import io.github.oshai.kotlinlogging.withLoggingContext
|
import io.github.oshai.kotlinlogging.withLoggingContext
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties
|
import org.springframework.boot.context.properties.EnableConfigurationProperties
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.bot
|
package com.pischule.memevizor.bot
|
||||||
|
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties
|
import org.springframework.boot.context.properties.ConfigurationProperties
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.bot
|
package com.pischule.memevizor.bot
|
||||||
|
|
||||||
import com.github.kotlintelegrambot.Bot
|
import com.github.kotlintelegrambot.Bot
|
||||||
import io.github.oshai.kotlinlogging.KotlinLogging
|
import io.github.oshai.kotlinlogging.KotlinLogging
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
package com.pischule.memestv.bot.handler
|
package com.pischule.memevizor.bot.handler
|
||||||
|
|
||||||
import com.github.kotlintelegrambot.dispatcher.handlers.media.MediaHandlerEnvironment
|
import com.github.kotlintelegrambot.dispatcher.handlers.media.MediaHandlerEnvironment
|
||||||
import com.github.kotlintelegrambot.entities.ChatId
|
import com.github.kotlintelegrambot.entities.ChatId
|
||||||
import com.github.kotlintelegrambot.entities.files.PhotoSize
|
import com.github.kotlintelegrambot.entities.files.PhotoSize
|
||||||
import com.github.kotlintelegrambot.entities.reaction.ReactionType
|
import com.github.kotlintelegrambot.entities.reaction.ReactionType
|
||||||
import com.pischule.memestv.bot.BotProps
|
import com.pischule.memevizor.bot.BotProps
|
||||||
import io.github.oshai.kotlinlogging.KotlinLogging
|
import io.github.oshai.kotlinlogging.KotlinLogging
|
||||||
import org.springframework.stereotype.Service
|
import org.springframework.stereotype.Service
|
||||||
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
package com.pischule.memestv.bot.handler
|
package com.pischule.memevizor.bot.handler
|
||||||
|
|
||||||
import com.github.kotlintelegrambot.dispatcher.handlers.MessageHandlerEnvironment
|
import com.github.kotlintelegrambot.dispatcher.handlers.MessageHandlerEnvironment
|
||||||
import com.github.kotlintelegrambot.entities.ChatId
|
import com.github.kotlintelegrambot.entities.ChatId
|
||||||
import com.github.kotlintelegrambot.entities.reaction.ReactionType
|
import com.github.kotlintelegrambot.entities.reaction.ReactionType
|
||||||
import com.pischule.memestv.bot.BotProps
|
import com.pischule.memevizor.bot.BotProps
|
||||||
import com.pischule.memestv.upload.FileUploaderService
|
import com.pischule.memevizor.upload.FileUploaderService
|
||||||
import com.pischule.memestv.util.getMaxResPhotoId
|
import com.pischule.memevizor.util.getMaxResPhotoId
|
||||||
import io.github.oshai.kotlinlogging.KotlinLogging
|
import io.github.oshai.kotlinlogging.KotlinLogging
|
||||||
import io.github.oshai.kotlinlogging.withLoggingContext
|
import io.github.oshai.kotlinlogging.withLoggingContext
|
||||||
import org.springframework.stereotype.Component
|
import org.springframework.stereotype.Component
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.upload
|
package com.pischule.memevizor.upload
|
||||||
|
|
||||||
import io.github.oshai.kotlinlogging.KotlinLogging
|
import io.github.oshai.kotlinlogging.KotlinLogging
|
||||||
import org.springframework.context.annotation.Profile
|
import org.springframework.context.annotation.Profile
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.upload
|
package com.pischule.memevizor.upload
|
||||||
|
|
||||||
import org.springframework.stereotype.Service
|
import org.springframework.stereotype.Service
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.upload
|
package com.pischule.memevizor.upload
|
||||||
|
|
||||||
import io.github.oshai.kotlinlogging.KotlinLogging
|
import io.github.oshai.kotlinlogging.KotlinLogging
|
||||||
import kotlinx.coroutines.runBlocking
|
import kotlinx.coroutines.runBlocking
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.upload
|
package com.pischule.memevizor.upload
|
||||||
|
|
||||||
import aws.sdk.kotlin.runtime.auth.credentials.StaticCredentialsProvider
|
import aws.sdk.kotlin.runtime.auth.credentials.StaticCredentialsProvider
|
||||||
import aws.sdk.kotlin.services.s3.S3Client
|
import aws.sdk.kotlin.services.s3.S3Client
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.upload
|
package com.pischule.memevizor.upload
|
||||||
|
|
||||||
import aws.sdk.kotlin.services.s3.S3Client
|
import aws.sdk.kotlin.services.s3.S3Client
|
||||||
import aws.sdk.kotlin.services.s3.model.PutObjectRequest
|
import aws.sdk.kotlin.services.s3.model.PutObjectRequest
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.upload
|
package com.pischule.memevizor.upload
|
||||||
|
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties
|
import org.springframework.boot.context.properties.ConfigurationProperties
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv.util
|
package com.pischule.memevizor.util
|
||||||
|
|
||||||
import com.github.kotlintelegrambot.entities.Message
|
import com.github.kotlintelegrambot.entities.Message
|
||||||
|
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
spring.application.name=memes-tv
|
spring.application.name=memevizor
|
||||||
logging.structured.format.console=ecs
|
logging.structured.format.console=ecs
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="icon"
|
<link rel="icon"
|
||||||
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📺</text></svg>">
|
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📺</text></svg>">
|
||||||
<title>memes-tv</title>
|
<title>memevizor</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--bg-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
|
--bg-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.pischule.memestv
|
package com.pischule.memevizor
|
||||||
|
|
||||||
import org.junit.jupiter.api.Disabled
|
import org.junit.jupiter.api.Disabled
|
||||||
import org.junit.jupiter.api.Test
|
import org.junit.jupiter.api.Test
|
||||||
Reference in New Issue
Block a user