/symfony4-rest-api-boilerplate

This is a sample project with fully working api and front end app

Primary LanguagePHP

symfony4-rest-api-boilerplate

The project is structured as follows:

.
├── api
└── gui
  • The api directory is the app back-end developed with Symfony 4, check the readme;
  • The gui directory is the app front-end developed with React, check the readme;

CORS

The api ships a .htaccess that supports browser preflight requests for CORS, the rule is open for every host and it must be changed to be used in production.

PHP Built-In Server

You'll need a workaround to access the back-end from the app if you're using the PHP built-in server because it does not support CORS;

Apache2

We provide a sample conffile here to help you.

NGINX

Feel free to submit a sample conffile for this sever.

About

This sample app was created based on this repository.