django 项目启动相关
Posted theland
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django 项目启动相关相关的知识,希望对你有一定的参考价值。
Django创建超级管理员
进入项目路径;
>> python manage.py createsuperuser
按照提示输入相应的用户名,邮箱和密码即可。
通过model自动生成数据表
命令行中进入 manage.py同级目录
执行python manage.py makemigratetions
在执行python manage.py migrate
启动Django项目
python manage.py runserver 0.0.0.0:8000
django 命令行生成安装依赖包requirements.txt文件
生成requirements.txt >> pip freeze > requirements.txt
执行requirements文件 >> pip install -r requirement.txt
以上是关于django 项目启动相关的主要内容,如果未能解决你的问题,请参考以下文章
项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段