mirror of https://github.com/fantasticit/think.git
chore: update config yaml location
This commit is contained in:
parent
498b73608a
commit
600f054098
|
@ -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
|
||||
# 开发环境配置
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
|
@ -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}`);
|
||||
|
|
Loading…
Reference in New Issue