# backend **Repository Path**: ElysiaProject/backend ## Basic Information - **Project Name**: backend - **Description**: 后端仓库,描述数据库与服务器 - **Primary Language**: TypeScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-06 - **Last Updated**: 2023-06-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 仓库说明 后端仓库,包括服务器逻辑与数据库运维 # 开发 ``` yarn install tsc node build/index.js // 或者 yarn start ``` # 项目结构 ``` . ├─node_modules ├─build // ts编译文件 ├─prisma // ORM配置文件 │ └─schema.prisma // 数据库配置项 ├─src // 源文件 ├─.env // 数据库连接配置,不可上传代码仓库 ├─package.json ├─tsconfig.json └─yarn.lock // NO EDIT ```