上一页 1 2 3 4 5 6 7 8 9 10 ··· 80 下一页
摘要: 解决方法: 登录后复制 settings.py 添加这句代码,域名改为你前端ngx的域名 CSRF_TRUSTED_ORIGINS = ['https://xxxx.demo.com'] 阅读全文
posted @ 2023-06-25 22:38 木子欢儿 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 在部署前 导出requirements.txt 文件:运行pip freeze > requirements.txt命令来生成requirements.txt文件,以便在安装依赖项时使用。 收集静态文件 在settings.py里面最后一行添加 STATIC_URL = '/static/' --n 阅读全文
posted @ 2023-06-25 21:51 木子欢儿 阅读(281) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2023-06-24 10:32 木子欢儿 阅读(34) 评论(0) 推荐(0) 编辑
摘要: <script> // 跳转提示 if (is_weixn_qq()) {; window.location.href = 'https://c.pc.qq.com/middle.html?pfurl='+window.location.href; } function is_weixn_qq(){ 阅读全文
posted @ 2023-06-22 12:18 木子欢儿 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 一、国内加速地址 1.Docker中国区官方镜像https://registry.docker-cn.com 2.网易http://hub-mirror.c.163.com 3.ustchttps://docker.mirrors.ustc.edu.cn 4.中国科技大学https://docker 阅读全文
posted @ 2023-06-16 15:45 木子欢儿 阅读(1596) 评论(0) 推荐(0) 编辑
摘要: It seems that there is an error while trying to install the mysqlclient package and it's failing to build the wheel. The error message indicates that 阅读全文
posted @ 2023-06-13 22:29 木子欢儿 阅读(198) 评论(0) 推荐(0) 编辑
摘要: https://almalinux.pkgs.org/9/almalinux-crb-x86_64/ Install mysql-devel rpm package: # dnf --enablerepo=crb install mysql-devel 阅读全文
posted @ 2023-06-13 22:19 木子欢儿 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 大部分新手刚学Django开发的时候默认用的都是SQLite数据库,上线部署的时候,大多用的却是Mysql。那么我们应该如何把数据库从SQLite迁移转换成Mysql呢? 之前我们默认使用的是SQLite数据库,我们开发完成之后,里面有许多数据。如果我们想转换成Mysql数据库,那我们先得把旧数据从 阅读全文
posted @ 2023-05-13 08:34 木子欢儿 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 首先先安装Docker 如何在 AlmaLinux 8 上安装和使用 Docker 检查Docker版本 docker --version 安装Docker Compose sudo curl -L "https://github.com/docker/compose/releases/downlo 阅读全文
posted @ 2023-05-07 13:15 木子欢儿 阅读(594) 评论(0) 推荐(0) 编辑
摘要: 其实我们的电脑是可以设置每天在指定的时间点自动关机的,具体操作方法: 1、开打电脑,点击电脑系统左下角windows图标,选择“控制面板”并进入;如图 2、在控制面板界面找到“管理工具”,点击开打;如图 3、在管理工具界面找到“任务计划程序”,点击开打;如图 4、在任务计划程序界面选择“创建基本任务 阅读全文
posted @ 2023-05-06 23:25 木子欢儿 阅读(388) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 80 下一页