Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 806 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 806 Bytes

mypictures

Django写的简单图床(文件中转)应用,支持用户区分、文件名搜索等。

用法

  1. 记得添加 ALLOW_HOSTS ,设置 DEBUG 为 False

  2. 直接部署Django应用

# 数据迁移
python manage.py makemigrations
python manage.py migrate

python manage.py makemigrations pictures
python manage.py migrate

# 开启服务器
python manage.py runserver
  1. 通过shell命令添加用户
python manage.py shell

from django.contrib.auth.models import User
user = User.objects.create_user('username', 'email', 'password')
user.save()
  1. 添加文件夹
mkdir uploadfiles
  1. 登录页面,开始上传文件

4.1 登录 登录

4.2 上传 上传