Я запускаю actionhero этой командой
pm2 start .\node_modules\actionhero\bin\actionhero
Но actionhero не запускается успешно, и это есть в моем журнале pm2:
error: No config directory found in this project, specified with --config, or found in process.env.ACTIONHERO_CONFIG





У меня нет опыта работы с actionhero, но он ясно говорит, что каталог конфигурации не найден. Либо 1. Параметр --config должен быть передан в качестве следующего аргумента для запуска pm2 или 2. Установите для переменной окружения ACTIONHERO_CONFIG соответствующее значение.
Параметры загрузки, чтобы найти каталог конфигурации
When launching ActionHero you can specify which config directory to use with --config '/path/to/dir' or the environment variable ACTIONHERO_CONFIG, otherwise ./config/ will be used from your working directory.
The priority of arguments is:
Use the project's ./config folder, if it exists.
actionhero --config=PATH1 --config=PATH2 --config=PATH3,PATH4
ACTIONHERO_CONFIG=PATH1,PATH2 npm start
Note that if --config or ACTIONHERO_CONFIG are used, they overwrite the use of the default /config folder. If you wish to use both, you need to re-specify "config", e.g. --config=config,local-config. Also, note that specifying multiple --config options on the command line does exactly the same thing as using one parameter with comma separators, however the environment variable method only supports the comma-delimited syntax.
спасибо, но какое значение для ACTIONHERO_CONFIG подходит в .env?