From 48ba451ec0ef9bafb76a7322986b7a1f1a360ecc Mon Sep 17 00:00:00 2001 From: coder-xiaomo Date: Mon, 24 Oct 2022 00:21:31 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=9E=E6=8E=A5=E6=9C=8D=E5=8A=A1=E5=99=A8?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 27 +++++++------- backend/.gitignore | 4 ++- backend/.idea/.gitignore | 7 ++++ backend/.idea/jarRepositories.xml | 35 +++++++++++++++++++ .../runConfigurations/UserProvider_Remote.xml | 20 +++++++++++ .../src/main/resources/application-remote.yml | 5 +++ 6 files changed, 85 insertions(+), 13 deletions(-) create mode 100644 backend/.idea/jarRepositories.xml create mode 100644 backend/.idea/runConfigurations/UserProvider_Remote.xml create mode 100644 backend/microservice-provider-user-8001/src/main/resources/application-remote.yml diff --git a/.gitignore b/.gitignore index 4d29033..9e883cf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,15 @@ -# Compiled class file -*.class - -# Log file -*.log - -# Package Files # -*.jar -*.war -*.zip -*.tar.gz -*.rar +# Compiled class file +*.class + +# Log file +*.log + +# Package Files # +*.jar +*.war +*.zip +*.tar.gz +*.rar + +# 自定义 +.vscode diff --git a/backend/.gitignore b/backend/.gitignore index 7ed0d6b..18e6e32 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -13,11 +13,13 @@ target/ .sts4-cache ### IntelliJ IDEA ### -.idea +# .idea *.iws *.iml *.ipr +!.idea/runConfigurations/* + ### NetBeans ### /nbproject/private/ /nbbuild/ diff --git a/backend/.idea/.gitignore b/backend/.idea/.gitignore index 35410ca..5128d09 100644 --- a/backend/.idea/.gitignore +++ b/backend/.idea/.gitignore @@ -6,3 +6,10 @@ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml + +# 自定义 +/*.xml +!/encodings.xml +!/jarRepositories.xml +!/misc.xml +!/vcs.xml diff --git a/backend/.idea/jarRepositories.xml b/backend/.idea/jarRepositories.xml new file mode 100644 index 0000000..ae4ecb8 --- /dev/null +++ b/backend/.idea/jarRepositories.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/backend/.idea/runConfigurations/UserProvider_Remote.xml b/backend/.idea/runConfigurations/UserProvider_Remote.xml new file mode 100644 index 0000000..83cfcfe --- /dev/null +++ b/backend/.idea/runConfigurations/UserProvider_Remote.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/backend/microservice-provider-user-8001/src/main/resources/application-remote.yml b/backend/microservice-provider-user-8001/src/main/resources/application-remote.yml new file mode 100644 index 0000000..542aab6 --- /dev/null +++ b/backend/microservice-provider-user-8001/src/main/resources/application-remote.yml @@ -0,0 +1,5 @@ +spring: + datasource: + url: jdbc:mysql://39.99.244.156:3306/epp?useUnicode=true&characterEncoding=utf8&useSSL=false + username: root + password: root