diff --git a/.dockerignore b/.dockerignore index 3e12f5f..e159107 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,3 @@ /repositories -repo/ \ No newline at end of file +repo/ +db_backups \ No newline at end of file diff --git a/ecosystem.config.js b/ecosystem.config.js index 7fde650..f36fd2b 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -5,7 +5,15 @@ module.exports = { script: "./index.ts", exec_mode: "fork", watch: true, - ignore_watch: ["node_modules", "repositories", "repo", "public", ".git", "db_backups"], + ignore_watch: [ + "node_modules", + "repositories", + "repo", + "public", + ".git", + "db_backups", + "dist", + ], interpreter: "node", interpreter_args: "--require ts-node/register", },