Create a Simple Todo App using a combination of the following libraries
git clone https://github.com/youichiro/next-graphql-simple-todo-app
cd next-graphql-simple-todo-app
npm install
# create postgresql database
createdb next_graphql_simple_todo_app
# add .env
cp .env.sample .env # set username and password to DATABASE_URL
# schema migration
npx prisma migrate dev
# insert seeds
npx prisma db seed
# serve
npm run dev