Awesome Todo based on Next.js 13

Getting Started

First, start database:

docker compose up

Second, run the development server:

# create database
yarn db:init

# and start dev server
yarn dev

Open http://localhost:3001 with your browser to see the result.

Run test

yarn lint
yarn test

Build image

docker build . -t todo:latest

Run production mode

docker compose -f docker-compose-production.yml up --build