├── .gitignore ├── .prettierignore ├── LICENSE.md ├── README.md ├── drizzle.config.ts ├── package.json ├── prettier.config.js ├── public └── circle.svg ├── src ├── client │ ├── +page.html │ ├── main.ts │ └── tailwind.css ├── content │ └── about.md ├── drab.d.ts ├── env.d.ts ├── lib │ ├── auth.ts │ ├── constants.ts │ ├── db │ │ ├── index.ts │ │ ├── query.ts │ │ └── table.ts │ ├── schema.ts │ └── types.ts ├── pages │ ├── home.tsx │ ├── layout.tsx │ ├── login.tsx │ └── study.tsx ├── server │ └── +app.tsx ├── svg │ └── google.svg └── ui │ ├── form.tsx │ ├── issue.tsx │ └── table.tsx ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | package-lock.json 5 | .vercel 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Plought 2 | 3 | WIP 4 | 5 | Reduce Noise in Decision Making 6 | -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/public/circle.svg -------------------------------------------------------------------------------- /src/client/+page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/client/+page.html -------------------------------------------------------------------------------- /src/client/main.ts: -------------------------------------------------------------------------------- 1 | import "drab/dialog/define"; 2 | -------------------------------------------------------------------------------- /src/client/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/client/tailwind.css -------------------------------------------------------------------------------- /src/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/content/about.md -------------------------------------------------------------------------------- /src/drab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/drab.d.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/lib/db/index.ts -------------------------------------------------------------------------------- /src/lib/db/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/lib/db/query.ts -------------------------------------------------------------------------------- /src/lib/db/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/lib/db/table.ts -------------------------------------------------------------------------------- /src/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/lib/schema.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/pages/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/pages/home.tsx -------------------------------------------------------------------------------- /src/pages/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/pages/layout.tsx -------------------------------------------------------------------------------- /src/pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/pages/login.tsx -------------------------------------------------------------------------------- /src/pages/study.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/pages/study.tsx -------------------------------------------------------------------------------- /src/server/+app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/server/+app.tsx -------------------------------------------------------------------------------- /src/svg/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/svg/google.svg -------------------------------------------------------------------------------- /src/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/ui/form.tsx -------------------------------------------------------------------------------- /src/ui/issue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/ui/issue.tsx -------------------------------------------------------------------------------- /src/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/src/ui/table.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossrobino/plought/HEAD/vite.config.ts --------------------------------------------------------------------------------