码迷,mamicode.com
首页 > 其他好文 > 详细

Django常用命令整理

时间:2020-03-12 10:13:53      阅读:55      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!