wip monorepo

This commit is contained in:
2025-11-04 23:16:21 -03:00
parent 83d48259d6
commit b85aead0d4
56 changed files with 6308 additions and 476 deletions

View File

@@ -5,7 +5,7 @@
"tsx": true,
"tailwind": {
"config": "",
"css": "app/app.css",
"css": "../../packages/ui/src/styles/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""

View File

@@ -12,6 +12,7 @@
"typecheck": "npm run cf-typegen && react-router typegen && tsc -b"
},
"dependencies": {
"@repo/ui": "*",
"@brazilian-utils/brazilian-utils": "^1.0.0-rc.12",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-avatar": "^1.1.10",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -6,7 +6,7 @@ import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [
cloudflare({ viteEnvironment: { name: 'ssr' } }),
cloudflare({ viteEnvironment: { name: 'ssr' }, inspectorPort: 9231 }),
tailwindcss(),
reactRouter(),
tsconfigPaths()

View File

@@ -1,5 +1,5 @@
/* eslint-disable */
// Generated by Wrangler by running `wrangler types` (hash: ec908479f8a48e246d1d9e73b0ee6dac)
// Generated by Wrangler by running `wrangler types` (hash: 1aadef19c576560a2c23acd0e7ab9b2e)
// Runtime types generated with workerd@1.20251011.0 2025-04-04
declare namespace Cloudflare {
interface GlobalProps {
@@ -7,11 +7,14 @@ declare namespace Cloudflare {
}
interface Env {
CLIENT_ID: "1db63660-063d-4280-b2ea-388aca4a9459";
REDIRECT_URI: "https://admin.saladeaula.digital/login";
SCOPE: "openid profile email offline_access apps:admin";
API_URL: "https://bcs7fgb9og.execute-api.sa-east-1.amazonaws.com";
ISSUER_URL: "https://id.saladeaula.digital";
MEILI_HOST: "https://search.saladeaula.digital";
CLIENT_SECRET: string;
REDIRECT_URI: string;
SESSION_SECRET: string;
MEILI_API_KEY: string;
}
}
interface Env extends Cloudflare.Env {}