细节修复

This commit is contained in:
Jerry 2025-08-26 20:23:10 +08:00
parent 7c2ed2f1de
commit aad87d4d7e
3 changed files with 7 additions and 7 deletions

View File

@ -1,8 +1,8 @@
{
"name": "nest-backend",
"version": "0.0.1",
"description": "",
"author": "",
"name": "crystelf-core",
"version": "1.0.0",
"description": "crystelf - working together for a bright future",
"author": "Jerryplusy",
"private": true,
"license": "UNLICENSED",
"scripts": {

View File

@ -27,7 +27,7 @@ export class PathService {
userData: path.join(this.baseDir, 'private/data'),
package: path.join(this.baseDir, 'package.json'),
modules: path.join(this.baseDir, 'src/modules'),
words: path.join(this.baseDir, 'private/word'),
words: path.join(this.baseDir, 'private/words/src'),
};
return type ? mappings[type] : this.baseDir;

View File

@ -39,6 +39,6 @@ async function bootstrap() {
});
}
bootstrap().then(() => {
Logger.log(`API服务已启动http://localhost:7000/api`);
Logger.log(`API文档 http://localhost:7000/docs`);
Logger.log(`API服务已启动http://localhost:6868/api`);
Logger.log(`API文档 http://localhost:6868/docs`);
});