vsmoraes/sf_skeleton

A modification to the "Symfony Standard Edition" distribution to make it little and API friendly.

3.2.1 2017-04-02 20:25 UTC

This package is auto-updated.

Last update: 2024-03-29 03:07:33 UTC


README

A Symfony distribution optimized to raw APIs

Requirements

This distribution comes with docker configurations for local environments. In order to use this feature you'll need:

Installation

composer create-project vsmoraes/sf_skeleton

Features

  • Clean symfony installation
  • Monolog, logstash and Kibana
  • New Relic pre-loaded
  • Docker local environment
  • Makefile to make your life a little easier

Local environment

To start the local environment, run:

make start

This command will start all the containers (fpm, nginx and elk). To access the application for the first time, you'll need to add the following line to your /etc/hosts file:

127.0.0.1 api.dev

Don't worry, it's just mapping the host api.dev to your localhost IP address. Now you can access the application using the browser of your choice using the address: http://api.dev.

Commands

Install dependencies:

make install

Start docker local environment:

make start

Stop docker local environment:

make stop

Run unit tests:

make test