A simple Symfony REST server
-
GIT clone
-
From the app folder run:
composer install
-
Set up the database details during the install process and the app key
-
Create the database user with the details you provided at step 3
-
Create the database ( if you have the database created manually you can skip this step):
php bin/console doctrine:database:create
-
Create the tables:
php bin/console doctrine:schema:update --force
-
Run using
php bin/console server:run
or with a web server .
- Implement validation
- Unit Tests
- Authentication
- Dockerize