bfzgs 2 년 전
커밋
9af9199aaf
11개의 변경된 파일226개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      .idea/.gitignore
  2. 6 0
      .idea/misc.xml
  3. 8 0
      .idea/modules.xml
  4. 6 0
      .idea/vcs.xml
  5. 30 0
      device-dev.yml
  6. 26 0
      event-dev.yml
  7. 46 0
      file-dev.yml
  8. 8 0
      final-project-config.iml
  9. 28 0
      gateway-dev.yml
  10. 30 0
      timetable-dev.yml
  11. 30 0
      user-dev.yml

+ 8 - 0
.idea/.gitignore

@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml

+ 6 - 0
.idea/misc.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectRootManager">
+    <output url="file://$PROJECT_DIR$/out" />
+  </component>
+</project>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/final-project-config.iml" filepath="$PROJECT_DIR$/final-project-config.iml" />
+    </modules>
+  </component>
+</project>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>

+ 30 - 0
device-dev.yml

@@ -0,0 +1,30 @@
+server:
+  port: 8004
+spring:
+  application:
+    name: final-device
+  datasource:
+    driver-class-name: com.mysql.cj.jdbc.Driver
+    url: jdbc:mysql://47.94.15.64:3306/final_project?useUnicode=true&characterEncoding=UTF8&useSSL=false&allowPublicKeyRetrieval=true
+    username: root
+    password: Cjy011007
+  jpa:
+    database: mysql
+    show-sql: true
+  rabbitmq:
+    host: 47.94.15.64
+    port: 5672
+    username: client
+    password: client
+  data:
+    redis:
+      host: 47.94.15.64
+      port: 6379
+org:
+    brynhild:
+        graduation:
+            jwt:
+                key: sjmbahczdszjj
+                ttl: 360000000
+
+

+ 26 - 0
event-dev.yml

@@ -0,0 +1,26 @@
+server:
+  port: 8002
+spring:
+  application:
+    name: final-event
+  datasource:
+    driver-class-name: com.mysql.cj.jdbc.Driver
+    url: jdbc:mysql://47.94.15.64:3306/final_project?useUnicode=true&characterEncoding=UTF8&useSSL=false&allowPublicKeyRetrieval=true
+    username: root
+    password: Cjy011007
+  jpa:
+    database: mysql
+    show-sql: true
+  rabbitmq:
+    host: 47.94.15.64
+    port: 5672
+    username: client
+    password: client
+  data:
+    redis:
+      host: 47.94.15.64
+      port: 6379
+jwt:
+  config:
+    key: sjmbahczdszjj
+    ttl: 360000000

+ 46 - 0
file-dev.yml

@@ -0,0 +1,46 @@
+server:
+  port: 8003
+spring:
+  application:
+    name: final-fileserver #指定服务名
+  datasource:
+    driverClassName: com.mysql.cj.jdbc.Driver
+    url: jdbc:mysql://47.94.15.64:3306/final_project?useUnicode=true&characterEncoding=UTF8&useSSL=false&allowPublicKeyRetrieval=true
+    username: root
+    password: Cjy011007
+  jpa:
+    database: MySQL
+    show-sql: false
+  rabbitmq:
+      host: 47.94.15.64
+      port: 5672
+      username: client
+      password: client
+  data:
+      redis:
+          host: 47.94.15.64
+          port: 6379
+  cloud:
+    refresh:
+      refreshable: none
+
+  servlet:
+    multipart:
+      max-file-size: 10MB
+      max-request-size: 100MB
+
+org:
+  brynhild:
+    graduation:
+      jwt:
+        key: sjmbahczdszjj
+        ttl: 360000000
+
+cos:
+  secretId: AKIDXu0qPikVz3pKZWCbjaATVHm45qKXT9Xe
+  secretKey: rRkmX1FCrFNEo79vQdZFemdDWYIlyYrt
+  appId: 1304182331
+  protocol: http
+  region: ap-beijing
+  bucketName: main-final-1304182331
+  redirectPath: https://main-final-1304182331.cos.ap-beijing.myqcloud.com/

+ 8 - 0
final-project-config.iml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="GENERAL_MODULE" version="4">
+  <component name="NewModuleRootManager" inherit-compiler-output="true">
+    <exclude-output />
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 28 - 0
gateway-dev.yml

@@ -0,0 +1,28 @@
+server:
+  port:   8100
+spring:
+  application:
+    name: final-gateway
+  main:
+    web-application-type: reactive
+  cloud:
+    refresh:
+      refreshable: none
+    httpclient:
+      connect-timeout: 1000
+      response-timeout: 5s
+  rabbitmq:
+    host: 47.94.15.64
+    port: 5672
+    username: client
+    password: client
+  data:
+    redis:
+      host: 47.94.15.64
+      port: 6379
+org:
+    brynhild:
+        graduation:
+            jwt:
+                key: sjmbahczdszjj
+                ttl: 360000000

+ 30 - 0
timetable-dev.yml

@@ -0,0 +1,30 @@
+server:
+  port: 8005
+spring:
+  application:
+    name: final-user
+  datasource:
+    driver-class-name: com.mysql.cj.jdbc.Driver
+    url: jdbc:mysql://47.94.15.64:3306/final_project?useUnicode=true&characterEncoding=UTF8&useSSL=false&allowPublicKeyRetrieval=true
+    username: root
+    password: Cjy011007
+  jpa:
+    database: mysql
+    show-sql: true
+  rabbitmq:
+    host: 47.94.15.64
+    port: 5672
+    username: client
+    password: client
+  data:
+    redis:
+      host: 47.94.15.64
+      port: 6379
+org:
+    brynhild:
+        graduation:
+            jwt:
+                key: sjmbahczdszjj
+                ttl: 360000000
+
+

+ 30 - 0
user-dev.yml

@@ -0,0 +1,30 @@
+server:
+  port: 8001
+spring:
+  application:
+    name: final-user
+  datasource:
+    driver-class-name: com.mysql.cj.jdbc.Driver
+    url: jdbc:mysql://47.94.15.64:3306/final_project?useUnicode=true&characterEncoding=UTF8&useSSL=false&allowPublicKeyRetrieval=true
+    username: root
+    password: Cjy011007
+  jpa:
+    database: mysql
+    show-sql: true
+  rabbitmq:
+    host: 47.94.15.64
+    port: 5672
+    username: client
+    password: client
+  data:
+    redis:
+      host: 47.94.15.64
+      port: 6379
+org:
+    brynhild:
+        graduation:
+            jwt:
+                key: sjmbahczdszjj
+                ttl: 360000000
+
+