This is a productivity app, with a twist.
Instead of spending hours planning out your perfect productivity routine and then not following it, One Thing will only give you one task at a time and it will be random. The more you use the app the more functionality it will provide, so you can craft your perfect routine over time, resulting in a more managable routine that you are more likely to stick to.
-
Set up your dev database
-
In
.env
add the following:
DATABASE_URL="postgresql://{{your-db-uri-here}}"
- Seed database:
If necessary, reset the db first:
npx prisma db push --force-reset
Then run the seed file:
npx prisma db seed
- Run the development server:
npm run dev