Seeds a Todo API app to connect with vue-todo project as back end.
Schema for project based off/to be interoperable with https://jsonplaceholder.typicode.com/todos
Clone this repo then run
npm install
Run the following command to run startup migrations.
adonis migration:run
adonis seed
Run the following to run the server
adonis serve --dev
docker run -it -p 8000:8000 --name todo-api-adonis absentbri/todo-api-adonis
docker run -d -p 8000:8000 --name todo-api-adonis absentbri/todo-api-adonis
docker-compose build
docker-compose up