Browse Source

Remove deploy script & reset config file

Granty1 4 years ago
parent
commit
651940d463
2 changed files with 56 additions and 56 deletions
  1. 50 50
      .github/workflows/backend_deploy.yml
  2. 6 6
      server/config.yaml

+ 50 - 50
.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: 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: Run Dockerfile
+#       run: |
+#         echo 'There is nothing for the time being' 
+#       working-directory: ./server
       
     
 

+ 6 - 6
server/config.yaml

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