Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 1.05 KB

README.md

File metadata and controls

33 lines (22 loc) · 1.05 KB

symblog tutorial - Creating a blog in Symfony2

Introduction

This project is the documentation source for the symblog tutorial located at http://tutorial.symblog.co.uk

Full details of this project can be found at the symblog tutorial site.

The demo site for this project can be found at http://symblog.co.uk

Installing

  1. Clone the repository
  2. Rename 'app/parameters.ini.dist' to 'app/parameter.ini'
  3. Run 'php bin/vendors install' to install all the required vendors
  4. Install the assets with 'php app/console assets:install web'
  5. Create the database with 'php app/console doctrine:database:create'
  6. Update schema with 'php app/console doctrine:schema:create'
  7. Load fixtures with 'php app/console doctrine:fixtures:load'

Updating to Symfony 2.0.1

If you already have a clone of the repo you will need to update your vendors by running

$ php bin/vendors install
$ php ./app/console cache:clear

More information can be found on the Symfony 2 blog