A dead simple task tracking app with some snazzy animations.
- NextJS / TypeScript
- TailwindCSS
- Prisma / PostgreSQL
- Framer Motion
- SWR
A live demo can be found at: https://todo.angoose.dev/. Alternatively, you can run it locally.
- NodeJS and NPM
- PostgreSQL database
- Create a
.env
file with the following contents, but with your Postgres DB credentials asDATABASE_URL
:
NEXTAUTH_SECRET=super_secret
DATABASE_URL=postgresql://postgres:docker@localhost:5433
-
Run
npm i
to install needed packages. -
Execute
npm run dev
to start the app in development mode. It should open at http://localhost:3000/.