# DoIt **Repository Path**: navalxie/do-it ## Basic Information - **Project Name**: DoIt - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-22 - **Last Updated**: 2024-10-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 配置后端步骤 ### 安装库 ```python 1. pip install openai 2. pip install django 3. pip install djangorestframework 4. pip install pymysq ```` ### 数据库配置 chatsSystem——>settings.py找到 ```python DATABASES = { "default": { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'chatsystem', 'HOST': '127.0.0.1', 'PORT': 3306, ### 修改为自己的数据库端口号 'USER': 'root', ### 修改为自己的数据库用户名 'PASSWORD': 'xsc20030128', ### 修改为自己的数据库密码 } } ``` ## 前端配置文件在chatsystem文件中