chore: update config yaml location

This commit is contained in:
fantasticit 2022-05-21 22:38:26 +08:00
parent 498b73608a
commit 600f054098
4 changed files with 4 additions and 4 deletions

View File

@ -90,11 +90,11 @@ pnpm run dev
- 服务接口地址:`http://localhost:5002`。
- 协作接口地址:`http://localhost:5003`。
如需修改配置,可在 `dev.yaml` 中进行配置。
如需修改配置,可在 `config/dev.yaml` 中进行配置。
### 配置文件
默认加载 `dev.yaml` 中的配置(生产环境使用 `prod.yaml` )。
默认加载 `config/dev.yaml` 中的配置(生产环境使用 `config/prod.yaml` )。
```yaml
# 开发环境配置

View File

@ -11,7 +11,7 @@ var FILE_ENV_NAME = {
};
var env = process.env.NODE_ENV || 'development';
function getConfig() {
var filePath = path.join(__dirname, '../../../', "".concat(FILE_ENV_NAME[env], ".yaml"));
var filePath = path.join(__dirname, '../../../config', "".concat(FILE_ENV_NAME[env], ".yaml"));
if (!fs.existsSync(filePath)) {
throw new Error("Can not find config file: ".concat(filePath));
}

View File

@ -11,7 +11,7 @@ const FILE_ENV_NAME = {
const env = process.env.NODE_ENV || 'development';
export function getConfig() {
const filePath = path.join(__dirname, '../../../', `${FILE_ENV_NAME[env]}.yaml`);
const filePath = path.join(__dirname, '../../../config', `${FILE_ENV_NAME[env]}.yaml`);
if (!fs.existsSync(filePath)) {
throw new Error(`Can not find config file: ${filePath}`);