Django入门(一)

1.配置环境

先安装python环境,在安装Django

2.创建Django工程

django-admin startproject myblog

3.启动django自带服务器

python manage.py runserver 9999

4. 目录结构


Django入门(一)_第1张图片

- wsgi.py : Python Web Server Gateway Interface 中文:Python服务器网关接口。Python应用与Web服务器之间的接口。

- urls.py : URL配置文件,Django项目中所有的地址(页面)都需要我们配置其URL。

- settings.py : 项目的总配置文件,里面包含了数据库、web应用、时间等配置。

- _init_.py : Python中声明模块的文件,内容默认为空。

个人博客:[https://blog.xvjialing.xyz](https://blog.xvjialing.xyz)

github主页:[https://github.com/xvjialing](https://github.com/xvjialing)

微信公众号

![微信公众号](http://upload-images.jianshu.io/upload_images/3804491-1136ea5d14d234a9.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

你可能感兴趣的:(Django入门(一))