For this task I selected API Platform application which works together with Symfony and has dockerized structure out of the box.
Api platform utilize Symfony entities annotations for managing API resources so it is pretty simple to set up basic API with plenty of control over it.
- Make simple REST API
- Pay attention to TDD, DDD, Event-driven Applications and Containers
- Symfony 5
- Docker
- Docker Compose
- PHP 7.3.10
- API Platform
- React
Docker.io and docker-compose must be installed in the system in order to be able to use the app. OS Linux
git clone git@github.com:belushkin/todo_list.git
cd todo_list;
docker-compose build
docker-compose up -d
docker-compose exec php bin/console doctrine:fixtures:load
- https://localhost - Welcome page
- https://localhost:8443/ - API page
- https://localhost:444/#/tasks - Admin page
- https://localhost/tasks/ - TODO list visualization page (pay attention to last /)
@belushkin
MIT License