2023年10月

一、小班上

星期一星期二星期三星期四星期五星期六星期日















画画

16:30-19:45





宝灵童音

15:30-16:30


二、小班下

星期一星期二星期三星期四星期五星期六星期日












科探研究

10:20-11:20



画画

18:30-19:45

英语

18:30-20:30


乐高

18:40-20:00




三、小中班暑假

星期一星期二星期三星期四星期五星期六星期日












科探研究

10:20-11:20



画画

18:30-19:45

英语

18:30-20:30


乐高

18:40-20:00




四、中班上

星期一星期二星期三星期四星期五星期六星期日





幼儿体能

8:50-9:50

口才表演

10:00-11:20







电子琴

14:00-15:00



画画

18:30-19:45

英语

18:30-20:30


乐高

18:40-20:00



日常打卡:英语打卡25分钟;语文打开25分钟;

到家时间:周二20:10;周三21:00;周五20:30;


近期总是无法push代码,想着开启V2RAYN还是无效果,研究强制配置git走代理形式

命令行配置代理方式一

git config --global http.proxy http://代理服务器地址:端口号
git config --global https.proxy https://代理服务器地址:端口号

如果有用户名密码按照下面命令配置

git config --global http.proxy http://用户名:密码@代理服务器地址:端口号
git config --global https.proxy https://用户名:密码@代理服务器地址:端口号

取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy



基于自动化配置需要,在使用Azure的时候发现可以快速进行自动化部署

以下采用VPC服务器、Python和Gunicorn进行自动化部署,配置文件如下:

name: Build and deploy Python app to Custom App

on:
    # 监听 push动作
    push:
        branches:
            - main
    # 手动触发
    workflow_dispatch:

jobs:
    deploy:
        runs-on: ubuntu-latest
        steps:
            -   name: 'Deploy to Custom App'
                uses: appleboy/ssh-action@master
                with:
                    host: ${{ secrets.DC_HOST }} # 公网 IP 或 域名
                    username: ${{ secrets.DC_USER }} # 登录名
                    password: ${{ secrets.DC_PASS }} # 密码
                    # 类似在服务端的终端-执行以下操作
                    script: |
                        cd /root/stock_py/
                        git pull
                        python3 -m venv venv
                        source venv/bin/activate
                        pip install -r requirements.txt
                        gunicorn -c gunicorn.conf.py wsgi:app