dizda13 2017-04-16 16:04:49 +02:00
commit 72511c38a2
7 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,12 @@
message=Djes dizda levatu
# Service names
users.name=users
events.name=events
teams.name=teams
# DB Properties
spring.datasource.url = jdbc:mysql://localhost:3306/users
spring.datasource.username = root
spring.datasource.password = root
spring.jpa.generate-ddl=true

View File

@ -0,0 +1 @@
user.role=Developer

View File

@ -0,0 +1 @@
user.role=User

View File

@ -0,0 +1,7 @@
server.port=8761
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
logging.level.com.netflix.eureka=OFF
logging.level.com.netflix.discovery=OFF

View File

@ -0,0 +1,2 @@
spring.application.name=events
server.port=9020

2
teams.properties 100644
View File

@ -0,0 +1,2 @@
spring.application.name=teams
server.port=9010

2
users.properties 100644
View File

@ -0,0 +1,2 @@
spring.application.name=users
server.port=8090