diff --git a/CHANGELOG.md b/CHANGELOG.md index e476f0d8..a90d7821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.6.1-RELEASE (2021-10-01) + +1. Reference production environment files + ## 1.6.0-RELEASE (2021-10-01) 1. Fixed RetrieveFAQs tests to properly use mocking and fix yarn linting script diff --git a/package.json b/package.json index 122d8d51..281d8ebf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "degen", - "version": "1.6.0", + "version": "1.6.1", "description": "Administrative and Utilitarian bot for the Bankless Discord Server.", "main": "app.js", "private": true, diff --git a/pm2.config.js b/pm2.config.js index b535e495..b545cba8 100644 --- a/pm2.config.js +++ b/pm2.config.js @@ -2,7 +2,7 @@ module.exports = { apps : [{ name : 'DEGEN', script : './dist/app/app.js', - node_args: '-r dotenv/config --trace-warnings dist/app/app.js dotenv_config_path=.env.qa', + node_args: '-r dotenv/config --trace-warnings dist/app/app.js dotenv_config_path=.env.prod', log_date_format: 'YYYY-MM-DD HH:mm Z', }], };