# what-name **Repository Path**: navalxie/what-name ## Basic Information - **Project Name**: what-name - **Description**: 我们是叫什么队 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-23 - **Last Updated**: 2024-11-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 配置后端步骤 ### 安装库 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', ### 修改为自己的数据库密码 } } ``` ## 前端配置文件在front_end文件当中