heelgrappigdennis
heelgrappigdennis
RRailway
Created by heelgrappigdennis on 6/21/2023 in #✋|help
How to deploy to root domain on aws route 53
6d888c30-44bb-4d6c-8df0-b37ecd39e975
5 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
Yes perfect
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
Thnx for your help
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
Its worth it for me 🙂
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
one of the 2 was at 269 before and went to 208, the other was at 190 and went to 195
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
im going to give it a try
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
yes
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
no just a mistake
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
yes it does
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
i need to improve the watch paths
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
npx nx run dashboard:serve.express --host:0.0.0.0
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
on prod i run serve.express
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
"preview": {
"executor": "@nx/vite:preview-server",
"options": {
"buildTarget": "dashboard:build",
"port": 4300
}
},
"test": {
"executor": "@nx/vite:test",
"outputs": ["../../coverage/apps/dashboard"],
"options": {
"passWithNoTests": true,
"reportsDirectory": "../../coverage/apps/dashboard"
}
},
"serve": {
"executor": "@nx/vite:dev-server",
"options": {
"buildTarget": "dashboard:build.client",
"mode": "ssr",
"port": 4200
}
},
"serve.express": {
"executor": "nx:run-commands",
"options": {
"commands": ["npx nx run dashboard:build:production", "node dist/apps/dashboard/server/entry.express"],
"parallel": false
}
},
"serve.debug": {
"executor": "nx:run-commands",
"options": {
"command": "node --inspect-brk ../../node_modules/vite/bin/vite.js --mode ssr --force",
"cwd": "apps/dashboard"
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/dashboard/**/*.{ts,tsx,js,jsx}"]
}
}
},
"tags": []
}
"preview": {
"executor": "@nx/vite:preview-server",
"options": {
"buildTarget": "dashboard:build",
"port": 4300
}
},
"test": {
"executor": "@nx/vite:test",
"outputs": ["../../coverage/apps/dashboard"],
"options": {
"passWithNoTests": true,
"reportsDirectory": "../../coverage/apps/dashboard"
}
},
"serve": {
"executor": "@nx/vite:dev-server",
"options": {
"buildTarget": "dashboard:build.client",
"mode": "ssr",
"port": 4200
}
},
"serve.express": {
"executor": "nx:run-commands",
"options": {
"commands": ["npx nx run dashboard:build:production", "node dist/apps/dashboard/server/entry.express"],
"parallel": false
}
},
"serve.debug": {
"executor": "nx:run-commands",
"options": {
"command": "node --inspect-brk ../../node_modules/vite/bin/vite.js --mode ssr --force",
"cwd": "apps/dashboard"
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/dashboard/**/*.{ts,tsx,js,jsx}"]
}
}
},
"tags": []
}
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
this is the main package.json the commands are in project.json that one looks like this:
{
"name": "dashboard",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/dashboard/src",
"targets": {
"build": {
"executor": "qwik-nx:build",
"options": {
"runSequence": ["dashboard:build.client", "dashboard:build.ssr"],
"outputPath": "dist/apps/dashboard"
},
"configurations": {
"preview": {},
"production": {}
}
},
"build.client": {
"executor": "@nx/vite:build",
"options": {
"outputPath": "dist/apps/dashboard",
"configFile": "apps/dashboard/vite.config.ts"
}
},
"build.ssr": {
"executor": "@nx/vite:build",
"defaultConfiguration": "preview",
"options": {
"outputPath": "dist/apps/dashboard"
},
"configurations": {
"preview": {
"ssr": "src/entry.preview.tsx",
"mode": "production"
},
"production": {
"configFile": "apps/dashboard/adapters/express/vite.config.ts"
}
}
},
{
"name": "dashboard",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/dashboard/src",
"targets": {
"build": {
"executor": "qwik-nx:build",
"options": {
"runSequence": ["dashboard:build.client", "dashboard:build.ssr"],
"outputPath": "dist/apps/dashboard"
},
"configurations": {
"preview": {},
"production": {}
}
},
"build.client": {
"executor": "@nx/vite:build",
"options": {
"outputPath": "dist/apps/dashboard",
"configFile": "apps/dashboard/vite.config.ts"
}
},
"build.ssr": {
"executor": "@nx/vite:build",
"defaultConfiguration": "preview",
"options": {
"outputPath": "dist/apps/dashboard"
},
"configurations": {
"preview": {
"ssr": "src/entry.preview.tsx",
"mode": "production"
},
"production": {
"configFile": "apps/dashboard/adapters/express/vite.config.ts"
}
}
},
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
Sure
{
"name": "com-toolsensei",
"dependencies": {
"@prisma/client": "^4.14.1",
"file-saver": "^2.0.5",
"html5-qrcode": "^2.3.8",
"qrcode": "^1.5.3",
"qwik-nx": "1.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@auth/core": "^0.7.1",
"@builder.io/qwik": "~1.1.1",
"@builder.io/qwik-auth": "~0.1.0",
"@builder.io/qwik-city": "~1.1.1",
"@modular-forms/qwik": "^0.13.0",
"@next-auth/prisma-adapter": "^1.0.6",
"@nx/eslint-plugin": "16.1.4",
"@nx/js": "16.1.4",
"@nx/linter": "16.1.4",
"@nx/vite": "16.1.4",
"@nx/workspace": "16.1.4",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/file-saver": "^2.0.5",
"@types/qrcode": "^1.5.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/coverage-c8": "^0.31.0",
"@vitest/ui": "^0.31.0",
"autoprefixer": "~10.4.11",
"clsx": "^1.2.1",
"compression": "^1.7.4",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-qwik": "~1.1.1",
"express": "^4.18.2",
"jsdom": "~20.0.3",
"node-fetch": "~3.3.0",
"nx": "16.1.4",
"nx-cloud": "latest",
"postcss": "~8.4.16",
"prettier": "^2.6.2",
"prisma": "^4.14.1",
"qwik-speak": "^0.14.0",
"sass": "~1.56.1",
"tailwindcss": "~3.1.8",
"typescript": "~5.0.2",
"undici": "^5.22.0",
"vite": "^4.3.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "~4.2.0",
"vitest": "^0.31.0"
}
}
{
"name": "com-toolsensei",
"dependencies": {
"@prisma/client": "^4.14.1",
"file-saver": "^2.0.5",
"html5-qrcode": "^2.3.8",
"qrcode": "^1.5.3",
"qwik-nx": "1.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@auth/core": "^0.7.1",
"@builder.io/qwik": "~1.1.1",
"@builder.io/qwik-auth": "~0.1.0",
"@builder.io/qwik-city": "~1.1.1",
"@modular-forms/qwik": "^0.13.0",
"@next-auth/prisma-adapter": "^1.0.6",
"@nx/eslint-plugin": "16.1.4",
"@nx/js": "16.1.4",
"@nx/linter": "16.1.4",
"@nx/vite": "16.1.4",
"@nx/workspace": "16.1.4",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/file-saver": "^2.0.5",
"@types/qrcode": "^1.5.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/coverage-c8": "^0.31.0",
"@vitest/ui": "^0.31.0",
"autoprefixer": "~10.4.11",
"clsx": "^1.2.1",
"compression": "^1.7.4",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-qwik": "~1.1.1",
"express": "^4.18.2",
"jsdom": "~20.0.3",
"node-fetch": "~3.3.0",
"nx": "16.1.4",
"nx-cloud": "latest",
"postcss": "~8.4.16",
"prettier": "^2.6.2",
"prisma": "^4.14.1",
"qwik-speak": "^0.14.0",
"sass": "~1.56.1",
"tailwindcss": "~3.1.8",
"typescript": "~5.0.2",
"undici": "^5.22.0",
"vite": "^4.3.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "~4.2.0",
"vitest": "^0.31.0"
}
}
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
now its like 210
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
I will look into it
79 replies
RRailway
Created by heelgrappigdennis on 5/29/2023 in #✋|help
build stuck on load metadata
i get that its a lot
79 replies