├── .env.example ├── .gitignore ├── README.md ├── app ├── actions │ ├── actions.server.ts │ └── actions.ts ├── components │ ├── editable-list.tsx │ ├── forms.tsx │ ├── icons.tsx │ ├── layout-effect.ts │ ├── layouts.tsx │ ├── tasks │ │ ├── backlog.tsx │ │ ├── bucket.tsx │ │ ├── calendar.tsx │ │ ├── day.tsx │ │ ├── shared.tsx │ │ └── unassigned.tsx │ └── use-parent-data.ts ├── entry.client.tsx ├── entry.server.tsx ├── models │ ├── bucket.ts │ ├── db.server.ts │ └── task.ts ├── root.tsx ├── routes │ ├── auth │ │ ├── logout.tsx │ │ └── validate.tsx │ ├── buckets.tsx │ ├── buckets │ │ ├── $bucketSlug.tsx │ │ └── index.tsx │ ├── calendar.tsx │ ├── calendar │ │ └── $day.tsx │ ├── index.tsx │ └── login.tsx └── util │ ├── auth.server.tsx │ ├── date.ts │ ├── http.ts │ └── user.server.ts ├── fly.toml ├── package.json ├── prisma ├── migrations │ ├── 20211213204911_init │ │ └── migration.sql │ ├── 20211218150006_change_task_date_to_string │ │ └── migration.sql │ ├── 20220117211501_add_sort_updated_at │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public └── favicon.png ├── remix.config.js ├── remix.env.d.ts ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ryan's Planner 2 | 3 | No instructions yet, but there will be soon. 4 | -------------------------------------------------------------------------------- /app/actions/actions.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/actions/actions.server.ts -------------------------------------------------------------------------------- /app/actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/actions/actions.ts -------------------------------------------------------------------------------- /app/components/editable-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/editable-list.tsx -------------------------------------------------------------------------------- /app/components/forms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/forms.tsx -------------------------------------------------------------------------------- /app/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/icons.tsx -------------------------------------------------------------------------------- /app/components/layout-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/layout-effect.ts -------------------------------------------------------------------------------- /app/components/layouts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/layouts.tsx -------------------------------------------------------------------------------- /app/components/tasks/backlog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/tasks/backlog.tsx -------------------------------------------------------------------------------- /app/components/tasks/bucket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/tasks/bucket.tsx -------------------------------------------------------------------------------- /app/components/tasks/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/tasks/calendar.tsx -------------------------------------------------------------------------------- /app/components/tasks/day.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/tasks/day.tsx -------------------------------------------------------------------------------- /app/components/tasks/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/tasks/shared.tsx -------------------------------------------------------------------------------- /app/components/tasks/unassigned.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/tasks/unassigned.tsx -------------------------------------------------------------------------------- /app/components/use-parent-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/components/use-parent-data.ts -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/models/bucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/models/bucket.ts -------------------------------------------------------------------------------- /app/models/db.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/models/db.server.ts -------------------------------------------------------------------------------- /app/models/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/models/task.ts -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/auth/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/auth/logout.tsx -------------------------------------------------------------------------------- /app/routes/auth/validate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/auth/validate.tsx -------------------------------------------------------------------------------- /app/routes/buckets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/buckets.tsx -------------------------------------------------------------------------------- /app/routes/buckets/$bucketSlug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/buckets/$bucketSlug.tsx -------------------------------------------------------------------------------- /app/routes/buckets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/buckets/index.tsx -------------------------------------------------------------------------------- /app/routes/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/calendar.tsx -------------------------------------------------------------------------------- /app/routes/calendar/$day.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/calendar/$day.tsx -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/routes/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/routes/login.tsx -------------------------------------------------------------------------------- /app/util/auth.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/util/auth.server.tsx -------------------------------------------------------------------------------- /app/util/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/util/date.ts -------------------------------------------------------------------------------- /app/util/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/util/http.ts -------------------------------------------------------------------------------- /app/util/user.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/app/util/user.server.ts -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/fly.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/package.json -------------------------------------------------------------------------------- /prisma/migrations/20211213204911_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/prisma/migrations/20211213204911_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211218150006_change_task_date_to_string/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/prisma/migrations/20211218150006_change_task_date_to_string/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20220117211501_add_sort_updated_at/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/prisma/migrations/20220117211501_add_sort_updated_at/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/public/favicon.png -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-planner/HEAD/tsconfig.json --------------------------------------------------------------------------------