Replace properties config with yaml

This commit is contained in:
2026-02-01 22:41:47 +03:00
parent 58f876bf7f
commit e463e880be
5 changed files with 14 additions and 10 deletions

1
.gitignore vendored
View File

@@ -41,6 +41,7 @@ out/
src/main/resources/application-local.properties
src/main/resources/application-local.yaml
src/main/resources/static
!src/main/resources/static/index.html

View File

@@ -1,8 +0,0 @@
bot.forward-chat-id=<?>
bot.approver-user-ids[0]=<?>
bot.token=
s3.endpoint=https://storage.yandexcloud.net
s3.region=ru-central1
s3.bucket=memevizor-test
s3.access-key-id=<?>
s3.secret-access-key=<?>

View File

@@ -0,0 +1,11 @@
bot:
forward-chat-id: <?>
approver-user-ids:
- <?>
token: <?>
s3:
endpoint: https://storage.yandexcloud.net
region: ru-central1
bucket: memevizor-test
access-key-id: <?>
secret-access-key: <?>

View File

@@ -1,2 +0,0 @@
spring.application.name=memevizor
management.server.port=7900

View File

@@ -0,0 +1,2 @@
spring.application.name: memevizor
management.server.port: 7900