This code repository is a simple implementation of [TodoMVC] 4 project using Symfony (PHP Framework).
This document contains information on how to download, install, and start using
Before you clone this repo, make sure you machine has the following:
- git clone
- composer install
- set the database authentication parameters on app/config/parameters.yml
- php app/console doctrine:database:create
- php app/console doctrine:schema:create
- chmod -R 777 app/logs app/cache
- php app/console assets:install web --symlink
Start a webserver for the Symfony backend:
$ php app/console server:run
Open the TodoMVC client on your browser:
Enjoy!