-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from cheng521521/main
feat:添加招聘模块的update,批量更新,批量添加成员
- Loading branch information
Showing
10 changed files
with
151 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ https://github.com/spruceid/siwe-go/blob/main/message.go | |
``` | ||
ssh [email protected] | ||
./gradlew build -x test | ||
scp ./dist/apps/dl.jar [email protected]:/root/Official-website-backend/dist/app | ||
scp ./dist/apps/dl.jar [email protected]:/root/Official-website-backend/dist/apps | ||
``` | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
server: | ||
port: 8080 | ||
servlet: | ||
session: | ||
timeout: 60m | ||
cookie: | ||
max-age: -1 | ||
spring: | ||
datasource: | ||
url: jdbc:mysql://127.0.0.1:3306/blog?allowPublicKeyRetrieval=true&useSSL=false | ||
#type: com.alibaba.druid.pool.DruidDataSource | ||
username: root | ||
#password: 12345678 | ||
password: root | ||
maximum-pool-size: 20 | ||
|
||
jpa: | ||
hibernate: | ||
ddl-auto: update | ||
generate-ddl: true | ||
show-sql: true | ||
database-platform: org.hibernate.dialect.MySQL5Dialect | ||
mail: | ||
host: smtp.163.com | ||
port: 465 | ||
username: [email protected] | ||
password: OXWEDGWEOGIGVWJN | ||
properties: | ||
mail: | ||
smtp: | ||
auth: true | ||
ssl: | ||
enable: true | ||
session: | ||
store-type: jdbc | ||
jdbc: | ||
initialize-schema: always | ||
cleanup-cron: 0 */3 * * * * | ||
timeout: 7200 | ||
|
||
logging: | ||
level: | ||
org.springframework.security: debug | ||
|
||
ipfs: | ||
url: /ip4/127.0.0.1/tcp/5001 | ||
|
||
web3j: | ||
client-address: "https://polygon-rpc.com" | ||
|
||
oauth: | ||
registrations: | ||
github: | ||
clientId: "Iv1.74aecf988af67044" | ||
clientSecret: "d0f38f58e98bb3dbb9a6bf6a2e1211a4feb24767" | ||
accessTokenUri: https://github.com/login/oauth/access_token | ||
userAuthorizationUri: https://github.com/login/oauth/authorize | ||
userInfoUri: https://api.github.com/user | ||
|
||
|