aya-eiya / ts-sample-todo-app

TypeScript開発の練習
0 stars 0 forks source link

Simple TODO App

*) All dependencies uses "latest" version in this sample app. It's to detect incompatibilities or bugs in "latest" version.

run with docker

docker-compose build
docker-compose up

then access http://localhost:3000

run with local server

start server

cd server
npm install
npm run start

start web

cd web
npm install
npm run dev