Browse Source

Remove deploy script & reset config file

main
Granty1 4 years ago
parent
commit
651940d463
  1. 102
      .github/workflows/backend_deploy.yml
  2. 10
      server/config.yaml

102
.github/workflows/backend_deploy.yml

@ -1,54 +1,54 @@
name: gin-vue-admin backend deploy
on:
push:
branches:
- master
paths:
- './server/**'
jobs:
deploy:
name: Backend deploy
runs-on: [ self-hosted ]
steps:
- name: Check out the repository
uses: actions/checkout@master
- name: Show files
run: |
pwd
ls -la
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
working-directory: ./server
- name: Build
run: |
go build -o run -v
working-directory: ./server
- name: Modify config params
run: |
sed -i 's/%{mysql_address}/'$MYSQL_ADDR'/' config.yaml
sed -i 's/%{mysql_username}/'$MYSQL_USERNAME'/' config.yaml
sed -i 's/%{mysql_password}/'$MSQL_PASSWORD'/' config.yaml
sed -i 's/%{redis_address}/'$REDIS_ADDR'/' config.yaml
sed -i 's/%{redis_password}/'$REDIS_PASSWORD'/' config.yaml
working-directory: ./server
- name: Run Dockerfile
run: |
echo 'There is nothing for the time being'
working-directory: ./server
# name: gin-vue-admin backend deploy
# on:
# push:
# branches:
# - master
# paths:
# - './server/**'
# jobs:
# deploy:
# name: Backend deploy
# runs-on: [ self-hosted ]
# steps:
# - name: Check out the repository
# uses: actions/checkout@master
# - name: Show files
# run: |
# pwd
# ls -la
# - name: Get dependencies
# run: |
# go get -v -t -d ./...
# if [ -f Gopkg.toml ]; then
# curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
# dep ensure
# fi
# working-directory: ./server
# - name: Build
# run: |
# go build -o run -v
# working-directory: ./server
# - name: Modify config params
# run: |
# sed -i 's/%{mysql_address}/'$MYSQL_ADDR'/' config.yaml
# sed -i 's/%{mysql_username}/'$MYSQL_USERNAME'/' config.yaml
# sed -i 's/%{mysql_password}/'$MSQL_PASSWORD'/' config.yaml
# sed -i 's/%{redis_address}/'$REDIS_ADDR'/' config.yaml
# sed -i 's/%{redis_password}/'$REDIS_PASSWORD'/' config.yaml
# working-directory: ./server
# - name: Run Dockerfile
# run: |
# echo 'There is nothing for the time being'
# working-directory: ./server

10
server/config.yaml

@ -10,9 +10,9 @@ jwt:
# mysql connect configuration # mysql connect configuration
mysql: mysql:
username: %{mysql_username}
password: %{mysql_password}
path: %{mysql_address}
username: root
password: 'Aa@6447985'
path: '127.0.0.1:3306'
db-name: 'qmPlus' db-name: 'qmPlus'
config: 'charset=utf8&parseTime=True&loc=Local' config: 'charset=utf8&parseTime=True&loc=Local'
max-idle-conns: 10 max-idle-conns: 10
@ -33,8 +33,8 @@ qiniu:
img-path: 'http://qmplusimg.henrongyi.top' img-path: 'http://qmplusimg.henrongyi.top'
# redis configuration # redis configuration
redis: redis:
addr: %{redis_address}
passwprd: %{redis_password}
addr: '127.0.0.1:6379'
password: ''
db: 0 db: 0
# system configuration # system configuration

Loading…
Cancel
Save