build: 🏗️ Add docker image and deployment features

This commit is contained in:
Baptiste Arnaud
2022-03-12 07:53:37 +01:00
parent 1dbbc9a251
commit e886d1b079
30 changed files with 2020 additions and 2136 deletions

View File

@@ -8,7 +8,6 @@ module.exports = {
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'next/core-web-vitals',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
@@ -23,9 +22,8 @@ module.exports = {
version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use
},
},
plugins: ['prettier', 'react', '@typescript-eslint'],
plugins: ['react', '@typescript-eslint'],
rules: {
'react/no-unescaped-entities': [0],
'prettier/prettier': 'error',
},
}

View File

@@ -7,7 +7,9 @@
const { withSentryConfig } = require('@sentry/nextjs')
const moduleExports = {
// Your existing module.exports
experimental: {
outputStandalone: true,
},
}
const sentryWebpackPluginOptions = {
@@ -22,6 +24,6 @@ const sentryWebpackPluginOptions = {
// https://github.com/getsentry/sentry-webpack-plugin#options.
}
// Make sure adding Sentry options is the last code to run before exporting, to
// ensure that your source maps include changes from all other Webpack plugins
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions)
module.exports = process.env.SENTRY_AUTH_TOKEN
? withSentryConfig(moduleExports, sentryWebpackPluginOptions)
: moduleExports

View File

@@ -3,6 +3,7 @@
"license": "AGPL-3.0-or-later",
"version": "0.1.0",
"scripts": {
"dx": "yarn dev",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
@@ -11,31 +12,32 @@
"test:open": "PWDEBUG=1 yarn playwright test"
},
"dependencies": {
"@sentry/nextjs": "^6.17.8",
"@sentry/nextjs": "^6.18.2",
"bot-engine": "*",
"cors": "^2.8.5",
"db": "*",
"google-spreadsheet": "^3.2.0",
"got": "^12.0.1",
"qs": "^6.10.3",
"models": "*",
"next": "^12.0.10",
"next": "^12.1.0",
"nodemailer": "^6.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"utils": "*"
},
"devDependencies": {
"@playwright/test": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/google-spreadsheet": "^3.1.5",
"@types/node": "^17.0.17",
"@types/node": "^17.0.21",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@types/react": "^17.0.40",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-config-next": "12.1.0",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
"typescript": "^4.6.2"
}
}