├── README.md ├── gatewayserver.yml ├── cards-qa.yml ├── cards.yml ├── loans-qa.yml ├── loans.yml ├── accounts-qa.yml ├── accounts.yml ├── eurekaserver.yml ├── cards-prod.yml ├── loans-prod.yml ├── accounts-prod.yml └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # eazybytes-config -------------------------------------------------------------------------------- /gatewayserver.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8072 3 | 4 | eureka: 5 | instance: 6 | preferIpAddress: true 7 | client: 8 | registerWithEureka: true 9 | fetchRegistry: true 10 | serviceUrl: 11 | defaultZone: "http://localhost:8070/eureka/" 12 | -------------------------------------------------------------------------------- /cards-qa.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "2.0" 3 | 4 | cards: 5 | message: "Welcome to EazyBank cards related QA APIs " 6 | contactDetails: 7 | name: "Cherryl Pankaj - QA Lead" 8 | email: "cherryl@eazybank.com" 9 | onCallSupport: 10 | - (310) 875-4367 11 | - (201) 236-1267 -------------------------------------------------------------------------------- /cards.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "3.0" 3 | 4 | cards: 5 | message: "Welcome to EazyBank cards related local APIs " 6 | contactDetails: 7 | name: "Dragos Lech - Developer" 8 | email: "dragos@eazybank.com" 9 | onCallSupport: 10 | - (412) 419-3491 11 | - (915) 382-1932 -------------------------------------------------------------------------------- /loans-qa.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "2.0" 3 | 4 | loans: 5 | message: "Welcome to EazyBank loans related QA APIs " 6 | contactDetails: 7 | name: "Cyrano Marita - QA Lead" 8 | email: "cyrano@eazybank.com" 9 | onCallSupport: 10 | - (785) 545-6565 11 | - (853) 546-3467 -------------------------------------------------------------------------------- /loans.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "3.0" 3 | 4 | loans: 5 | message: "Welcome to EazyBank loans related local APIs " 6 | contactDetails: 7 | name: "Amaal Grega - Developer" 8 | email: "amaal@eazybank.com" 9 | onCallSupport: 10 | - (452) 456-2176 11 | - (546) 764-8934 -------------------------------------------------------------------------------- /accounts-qa.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "2.0" 3 | 4 | accounts: 5 | message: "Welcome to EazyBank accounts related QA APIs " 6 | contactDetails: 7 | name: "Smitha Ray - QA Lead" 8 | email: "smitha@eazybank.com" 9 | onCallSupport: 10 | - (666) 265-3765 11 | - (666) 734-8371 -------------------------------------------------------------------------------- /accounts.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "3.0" 3 | 4 | accounts: 5 | message: "Welcome to EazyBank accounts related docker APIs " 6 | contactDetails: 7 | name: "John Doe - Developer" 8 | email: "john@eazybank.com" 9 | onCallSupport: 10 | - (555) 555-1234 11 | - (555) 523-1345 12 | -------------------------------------------------------------------------------- /eurekaserver.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8070 3 | 4 | eureka: 5 | instance: 6 | hostname: localhost 7 | client: 8 | fetchRegistry: false 9 | registerWithEureka: false 10 | serviceUrl: 11 | defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ 12 | 13 | -------------------------------------------------------------------------------- /cards-prod.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "1.0" 3 | 4 | cards: 5 | message: "Hey, welcome to EazyBank cards related prod APIs" 6 | contactDetails: 7 | name: "Sandra Harald - Product Owner" 8 | email: "sandra@eazybank.com" 9 | onCallSupport: 10 | - (617) 432-2356 11 | - (936) 564-8721 12 | -------------------------------------------------------------------------------- /loans-prod.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "1.0" 3 | 4 | loans: 5 | message: "Hey, welcome to EazyBank loans related prod APIs " 6 | contactDetails: 7 | name: "Pelias Sudhir - Product Owner" 8 | email: "pelias@eazybank.com" 9 | onCallSupport: 10 | - (723) 656-8709 11 | - (156) 342-0956 12 | -------------------------------------------------------------------------------- /accounts-prod.yml: -------------------------------------------------------------------------------- 1 | build: 2 | version: "1.0" 3 | 4 | accounts: 5 | message: "Hey, welcome to EazyBank accounts related prod APIs" 6 | contactDetails: 7 | name: "Reine Aishwarya - Product Owner" 8 | email: "{cipher}f83ac5a34ba5f4657ae8e863c063c1b69efb4d23d0c431eb134f8d1b3ed0823dee0a4b627d091455b4c6600353a3682c" 9 | onCallSupport: 10 | - (453) 392-4829 11 | - (236) 203-0384 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | HELP.md 2 | target/ 3 | !.mvn/wrapper/maven-wrapper.jar 4 | !**/src/main/**/target/ 5 | !**/src/test/**/target/ 6 | 7 | ### STS ### 8 | .apt_generated 9 | .classpath 10 | .factorypath 11 | .project 12 | .settings 13 | .springBeans 14 | .sts4-cache 15 | 16 | ### IntelliJ IDEA ### 17 | .idea 18 | *.iws 19 | *.iml 20 | *.ipr 21 | .DS_Store 22 | 23 | ### NetBeans ### 24 | /nbproject/private/ 25 | /nbbuild/ 26 | /dist/ 27 | /nbdist/ 28 | /.nb-gradle/ 29 | build/ 30 | !**/src/main/**/build/ 31 | !**/src/test/**/build/ 32 | --------------------------------------------------------------------------------