# django-blog **Repository Path**: HeGlory/django-blog ## Basic Information - **Project Name**: django-blog - **Description**: 基于django开发的博客系统 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2023-03-23 - **Last Updated**: 2023-06-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: Django, Python, HTML, CSS, JavaScript ## README 1. 在项目命令行窗口运行 pip install -r requirements.txt 2. 在命令行窗口运行 python runserver.py 启动服务器 默认监听8000端口 在网站settings.py中配置发送邮件的邮箱 EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_USE_SSL = True smtp邮箱服务器地址 EMAIL_HOST = '' smtp.163.com 服务端口 EMAIL_PORT = 465 发送邮件的邮箱 EMAIL_HOST_USER = '' 校验码 EMAIL_HOST_PASSWORD = ''