2018年10月20日

rest_framework_jwt

摘要: 安装配置 安装 配置 使用 在注册成功后,连同返回token,需要在注册视图中创建token,手动创建token的方法 阅读全文

posted @ 2018-10-20 08:41 A-Way 阅读(807) 评论(0) 推荐(0) 编辑

2018年10月18日

js 生成 uuid

摘要: // 生成uuid generate_uuid: function(){ var d = new Date().getTime(); if(window.performance && typeof window.performance.now "function"){ d += performanc 阅读全文

posted @ 2018-10-18 11:38 A-Way 阅读(717) 评论(0) 推荐(0) 编辑

2018年10月17日

django-settings里mysql连接配置

摘要: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'dailyfresh', 'HOST': 'localhost', 'PORT': 3306, 'USER': 'root',' 'PASSWORD': 阅读全文

posted @ 2018-10-17 17:10 A-Way 阅读(253) 评论(0) 推荐(0) 编辑

django-settings里redis连接与缓存配置

摘要: # Django-redis的缓存配置 CACHES = { "default": { "BACKEND": "django_redis.cache.RedisCache", "LOCATION": "redis://127.0.0.1:6379/6", "OPTIONS": { "CLIENT_C 阅读全文

posted @ 2018-10-17 16:48 A-Way 阅读(162) 评论(0) 推荐(0) 编辑

2018年10月13日

docker部署思路

摘要: 1、docker安装2、拉取centos镜像或者Ubuntu镜像 看你用哪个3、使用镜像,run出来一个容器A4、进入容器A,安装uwsgi,把Django部署在下面5、在启动脚本中配置开机自启动脚本(这步有点难,需要命令方面需要使用特权)6、提交容器A成为新镜像,run这个新镜像为容器,项目就部署 阅读全文

posted @ 2018-10-13 14:07 A-Way 阅读(221) 评论(0) 推荐(0) 编辑

docker简单使用+django+uwsgi+nginx项目部署

摘要: 使用docker 搭建 centos7 环境: 主机环境:windows 10专业版 一、安装docker Hub.docker.com官网下载 docker for windows 安装完成后,任务栏会 表示已经运行起来,使用注册的账号进行登录,显示docker is running表示windo 阅读全文

posted @ 2018-10-13 14:06 A-Way 阅读(858) 评论(0) 推荐(0) 编辑

导航