This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aws: | |
| secretsmanager: | |
| default-context: application | |
| prefix: /bytenovus/sm | |
| profile-separator: _ | |
| fail-fast: true | |
| name: ByteNovusapplication | |
| enabled: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cloud.aws.region.auto=false | |
| cloud.aws.region.static=us-east-1 | |
| cloud.aws.stack.auto=false | |
| spring.autoconfigure.exclude=org.springframework.cloud.aws.autoconfigure.context.ContextInstanceDataAutoConfiguration,\ | |
| org.springframework.cloud.aws.autoconfigure.context.ContextCredentialsAutoConfiguration,\ | |
| org.springframework.cloud.aws.autoconfigure.context.ContextRegionProviderAutoConfiguration,\ | |
| org.springframework.cloud.aws.autoconfigure.context.ContextResourceLoaderAutoConfiguration,\ | |
| org.springframework.cloud.aws.autoconfigure.context.ContextStackAutoConfiguration,\ | |
| org.springframework.cloud.aws.autoconfigure.mail.MailSenderAutoConfiguration,\ | |
| org.springframework.cloud.aws.autoconfigure.cache.ElastiCacheAutoConfiguration,\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo yum install -y gcc | |
| wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz | |
| cd redis-stable | |
| make | |
| // In case of exception in above make command | |
| cd deps | |
| make hiredis jemalloc linenoise lua geohash-int | |
| cd .. | |
| make install |