diff --git a/packages/skin-database/ecosystem.config.js b/packages/skin-database/ecosystem.config.js index 7d847362..04aef2b6 100644 --- a/packages/skin-database/ecosystem.config.js +++ b/packages/skin-database/ecosystem.config.js @@ -6,7 +6,7 @@ module.exports = { apps: [ { name: "skin-database-blue", - script: "pnpm", + script: "yarn", interpreter: "bash", args: "start", env: { @@ -16,7 +16,7 @@ module.exports = { }, { name: "skin-database-green", - script: "pnpm", + script: "yarn", interpreter: "bash", args: "start", env: { @@ -24,5 +24,14 @@ module.exports = { PORT: 3002, }, }, + { + name: "skin-bot", + script: "yarn", + interpreter: "bash", + args: "bot", + env: { + NODE_ENV: "production", + }, + }, ], }; diff --git a/packages/skin-database/next.config.js b/packages/skin-database/next.config.js index 84a62cd4..fb6aea14 100644 --- a/packages/skin-database/next.config.js +++ b/packages/skin-database/next.config.js @@ -1,5 +1,12 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + typescript: { + // !! WARN !! + // Dangerously allow production builds to successfully complete even if + // your project has type errors. + // !! WARN !! + ignoreBuildErrors: true, + }, serverExternalPackages: ["knex", "imagemin-optipng", "discord.js"], experimental: { viewTransition: true,