Giter Club home page Giter Club logo

symfony-emberjs-edition's Introduction

Symfony EmberJS Edition

Welcome to the Symfony EmberJS Edition - a fully-functional Symfony2 application that you can use as the skeleton for your new applications.

It owes a lot to: FOSRestBundle

http://williamdurand.fr/2012/08/02/rest-apis-with-symfony2-the-right-way/

http://welcometothebundle.com/symfony2-rest-api-the-best-2013-way/

This document contains information on how to download, install, and start using Symfony. For a more detailed explanation, see the Installation chapter of the Symfony Documentation.

  1. Installing Dependencies

npm install
  1. Installing the EmberJS Edition

When it comes to installing the Symfony EmberJS Edition, you have the following options.

Use Composer (recommended)

As Symfony uses Composer to manage its dependencies, the recommended way to create a new project is to use it.

If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:

curl -s http://getcomposer.org/installer | php

Then, use the create-project command to generate a new Symfony application:

php composer.phar create-project ucsf-ckm/symfony-emberjs-edition path/to/install

Composer will install Symfony and all its dependencies under the path/to/install directory.

Download an Archive File

To quickly test Symfony, you can also download an archive of the EmberJS Edition and unpack it somewhere under your web server root directory.

If you downloaded an archive "without vendors", you also need to install all the necessary dependencies. Download composer (see above) and run the following command:

php composer.phar install

Whenever you run this command, a script creates the parameters.yml file with configuration of database connection, stmp server, etc. If you don't use --no-interaction flag, it allows you to customize all the values interactively.

Be careful setting the value of ember_api_host parameter, this is a hostname of current application and it will be used by EmberJS application for API requests.

  1. Run Server

Skip this step if you have already configured a full-featured web server such as Nginx or Apache.

Built in Web Server provides an easy ability to run your application for demonstration or for local development.

Run the following command to run web server that serves your application at address localhost:8000:

php app/console server:start
  1. Checking your System Configuration

Before starting coding, make sure that your local system is properly configured for Symfony.

Execute the check.php script from the command line:

php app/check.php

The script returns a status code of 0 if all mandatory requirements are met, 1 otherwise.

Access the config.php script from a browser:

http://localhost:8000/config.php

If you get any warnings or recommendations, fix them before moving on.

  1. Browsing the Demo Application

Congratulations! You're now ready to use Symfony.

From the config.php page click on the "Configure your Symfony Application online" link of the config.php page.

Setup your database connection - use sqlite for a fast demo.

Create the database schema and add some sample data:

php app/console doctrine:schema:create --env=dev
php app/console doctrine:fixtures:load --env=dev

To browse your new API documentation visit:

http://localhost:8080/api/doc/

And to see the API in action

http://localhost:8000/api/v1/products
http://localhost:8000/api/v1/products/1.json
http://localhost:8000/api/v1/products/1.xml

Access the following page to see a real-live EmberJS in Symfony page in action.

http://localhost:8000/

What's inside?

The Symfony EmberJS Edition is configured with the following defaults:

  • Twig is the only configured template engine;

  • Doctrine ORM/DBAL is configured;

  • Swiftmailer is configured;

  • Annotations for everything are enabled.

  • FOSRest is configured

  • Bower is configured

  • Assetic with ember-precompile is configured

It comes pre-configured with the following bundles:

  • FrameworkBundle - The core Symfony framework bundle

  • SensioFrameworkExtraBundle - Adds several enhancements, including template and routing annotation capability

  • DoctrineBundle - Adds support for the Doctrine ORM

  • TwigBundle - Adds support for the Twig templating engine

  • SecurityBundle - Adds security by integrating Symfony's security component

  • SwiftmailerBundle - Adds support for Swiftmailer, a library for sending emails

  • MonologBundle - Adds support for Monolog, a logging library

  • AsseticBundle - Adds support for Assetic, an asset processing library

  • WebProfilerBundle (in dev/test env) - Adds profiling functionality and the web debug toolbar

  • SensioDistributionBundle - Adds functionality for configuring and working with Symfony distributions

  • SensioGeneratorBundle - Adds code generation capabilities

  • FOSRestBundle - Adds suport for rest API

  • NelmioApiDocBundle - Generates API Docs

  • AcmeApiBundle - A demo bundle with example code for building an EmberJS friendly API

  • AcmeEmberBundle - A demo bundle with example code for organizing and EmberJS application

All libraries and bundles included in the Symfony EmberJS Edition are released under the MIT or BSD license.

Enjoy!

symfony-emberjs-edition's People

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.