最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do you get cron job running Node.js script to read variables from .env file? - Stack Overflow

programmeradmin1浏览0评论

I've currently got a cron job setup where it runs a Node.js script. The Node.js script uses the dotenv package to read a .env file that has some API keys.

When I run the Node.js script from the mand line, the variables are read correctly from the .env file and works with my Node.js script.

But when cron runs the Node.js script, the variables that I'm trying to set return undefined.

00 05 * * * /home/michaellee/.nvm/versions/node/v6.10.0/bin/node /home/michaellee/index.js >> /home/michaellee/output.log

The .env file resides in the same level as the index.js file.

The cron job is set using crontab -e from the user michaellee, the same user that has the files on Ubuntu.

I've currently got a cron job setup where it runs a Node.js script. The Node.js script uses the dotenv package to read a .env file that has some API keys.

When I run the Node.js script from the mand line, the variables are read correctly from the .env file and works with my Node.js script.

But when cron runs the Node.js script, the variables that I'm trying to set return undefined.

00 05 * * * /home/michaellee/.nvm/versions/node/v6.10.0/bin/node /home/michaellee/index.js >> /home/michaellee/output.log

The .env file resides in the same level as the index.js file.

The cron job is set using crontab -e from the user michaellee, the same user that has the files on Ubuntu.

Share Improve this question asked May 24, 2017 at 18:05 michaelleemichaellee 1,3623 gold badges17 silver badges26 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

I just change the path on dotenv config and it worked for me

const dotenv = require('dotenv');    
dotenv.config({ path: __dirname + '/../.env' });

I think it'd be less of a headache to take the contents out of the .env file and load them into a JSON file. Then, you can just require the JSON file and load in the data. Much each & doesn't require any plugins, & it would work w/ Cron seamlessly.

发布评论

评论列表(0)

  1. 暂无评论