mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +01:00
* fix: skip env validation in dockerfile not working * fix: skip env validation in dockerfile not working * fix: remove linux/arm/v7 for now as node commands are run forever * fix: remove cache because it is to big? * refactor: remove redis log transport during build * fix: add more checks for conditional redis connection * fix: docker build not working locally * refactor: move base image to debian * chore: add arm v7 platform support * fix: remove armv7 support as not supported by turbo * chore: profile amd64 build * chore: enable webpack logging * chore: disable linux/arm64 for now * chore: remove profiling from build in dockerfile * chore: revert to node alpine image
95 lines
1.8 KiB
JSON
95 lines
1.8 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"globalDependencies": [
|
|
"**/.env"
|
|
],
|
|
"globalEnv": [
|
|
"AUTH_LDAP_BASE",
|
|
"AUTH_LDAP_BIND_DN",
|
|
"AUTH_LDAP_BIND_PASSWORD",
|
|
"AUTH_LDAP_GROUP_CLASS",
|
|
"AUTH_LDAP_GROUP_FILTER_EXTRA_ARG",
|
|
"AUTH_LDAP_GROUP_MEMBER_ATTRIBUTE",
|
|
"AUTH_LDAP_GROUP_MEMBER_USER_ATTRIBUTE",
|
|
"AUTH_LDAP_SEARCH_SCOPE",
|
|
"AUTH_LDAP_URI",
|
|
"AUTH_OIDC_CLIENT_ID",
|
|
"AUTH_OIDC_CLIENT_NAME",
|
|
"AUTH_OIDC_CLIENT_SECRET",
|
|
"AUTH_OIDC_ISSUER",
|
|
"AUTH_OIDC_SCOPE_OVERWRITE",
|
|
"AUTH_LDAP_USERNAME_ATTRIBUTE",
|
|
"AUTH_LDAP_USER_MAIL_ATTRIBUTE",
|
|
"AUTH_LDAP_USERNAME_FILTER_EXTRA_ARG",
|
|
"AUTH_OIDC_AUTO_LOGIN",
|
|
"AUTH_PROVIDERS",
|
|
"AUTH_SECRET",
|
|
"CI",
|
|
"DISABLE_REDIS_LOGS",
|
|
"DB_URL",
|
|
"DB_HOST",
|
|
"DB_USER",
|
|
"DB_PASSWORD",
|
|
"DB_NAME",
|
|
"DB_PORT",
|
|
"DB_DRIVER",
|
|
"DOCKER_HOSTNAMES",
|
|
"DOCKER_PORTS",
|
|
"NODE_ENV",
|
|
"PORT",
|
|
"SKIP_ENV_VALIDATION",
|
|
"VERCEL_URL"
|
|
],
|
|
"ui": "stream",
|
|
"tasks": {
|
|
"topo": {
|
|
"dependsOn": [
|
|
"^topo"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".next/**",
|
|
"!.next/cache/**",
|
|
"next-env.d.ts",
|
|
".output/**",
|
|
".vercel/output/**"
|
|
]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"format": {
|
|
"outputs": [
|
|
"node_modules/.cache/.prettiercache"
|
|
],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^topo"
|
|
],
|
|
"outputs": [
|
|
"node_modules/.cache/.eslintcache"
|
|
]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": [
|
|
"^topo"
|
|
],
|
|
"outputs": [
|
|
"node_modules/.cache/tsbuildinfo.json"
|
|
]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"//#clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
} |