标签:serve == app run style 命令 执行 font 目录
1. django的安装
pip install django==1.11.11
pip install -i 源(清华豆瓣) django==1.11.11
2. 创建项目
django-admin startproject 项目名
通过manage.py执行
CD 项目目录下
3. 创建APP
python manage.py startapp app01
4. 启动项目
python manage.py runserver # 127.0.0.1:8000
python manage.py runserver 80 # 127.0.0.1:80
python manage.py runserver 0.0.0.0:80 # 0.0.0.0:80
5. 数据库相关
python manage.py makemigrations # 记录modeles的变化,将变更记录记录到 对应APP下的migrations
python manage.py migrate # 翻译成SQL语句,去数据库执行
Django常用命令整理
标签:serve == app run style 命令 执行 font 目录
原文地址:https://www.cnblogs.com/hercules-chung/p/12466882.html