Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BIGTOP-4119: Add banner #7

Merged
merged 6 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ header:
- 'LICENSE'
- 'pnpm-lock.yaml'
- '**/*.proto'
- '**/*.txt'

comment: on-failure
4 changes: 4 additions & 0 deletions bigtop-manager-agent/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ bigtop:
port: 8080

spring:
banner:
charset: utf-8
application:
name: bigtop-manager-agent
main:
banner-mode: log

server:
port: 8081
Expand Down
8 changes: 8 additions & 0 deletions bigtop-manager-agent/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

____ ___ ____ _____ ___ ____ __ __ _ _ _ _ ____ _____ ____
| __ )_ _/ ___|_ _/ _ \| _ \ | \/ | / \ | \ | | / \ / ___| ____| _ \
| _ \| | | _ | || | | | |_) | | |\/| | / _ \ | \| | / _ \| | _| _| | |_) |
| |_) | | |_| | | || |_| | __/ | | | |/ ___ \| |\ |/ ___ \ |_| | |___| _ <
|____/___\____| |_| \___/|_| |_| |_/_/ \_\_| \_/_/ \_\____|_____|_| \_\

:: Bigtop Manager Agent :: ${application.formatted-version}
4 changes: 4 additions & 0 deletions bigtop-manager-server/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ bigtop:
type: eclipselink

spring:
banner:
charset: utf-8
application:
name: bigtop-manager-server
main:
banner-mode: log
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/bigtop_manager
Expand Down
8 changes: 8 additions & 0 deletions bigtop-manager-server/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

____ ___ ____ _____ ___ ____ __ __ _ _ _ _ ____ _____ ____
| __ )_ _/ ___|_ _/ _ \| _ \ | \/ | / \ | \ | | / \ / ___| ____| _ \
| _ \| | | _ | || | | | |_) | | |\/| | / _ \ | \| | / _ \| | _| _| | |_) |
| |_) | | |_| | | || |_| | __/ | | | |/ ___ \| |\ |/ ___ \ |_| | |___| _ <
|____/___\____| |_| \___/|_| |_| |_/_/ \_\_| \_/_/ \_\____|_____|_| \_\

:: Bigtop Manager Server :: ${application.formatted-version}
Loading