https://github.com/alex-d/blogmvc-symfony2
Part of BlogMVC project
https://github.com/alex-d/blogmvc-symfony2
Last synced: about 1 year ago
JSON representation
Part of BlogMVC project
- Host: GitHub
- URL: https://github.com/alex-d/blogmvc-symfony2
- Owner: Alex-D
- Created: 2017-01-11T13:31:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-19T23:59:59.000Z (over 9 years ago)
- Last Synced: 2025-01-28T20:41:49.199Z (over 1 year ago)
- Language: CSS
- Homepage: https://github.com/Grafikart/BlogMVC
- Size: 75.2 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Symfony 2
## Notes
- No SQL dump file was needed, the defaults data are added by doctrine fixtures bundle (see install explaination just below)
- Category count_post property does not exist because it's more powerfull to count posts each time the cache was re-generated
- The sidebar view was rendered into PublicController and the result was in file cache or APC cache (if APC extension was enabled)
- AbstractController contains helpers for Public and Admin controllers for pagination and getting the best cache, like it was explain in previous point
## Install
- Import Symfony2 using composer : ```composer install```
- Create database : ```doctrine:database:create```
- Create schema of database : ```doctrine:schema:create```
- Load DataFixtures : ```doctrine:fixtures:load``` and validate with **Y** to continue
- Dump assets ```assetic:dump```
- Enjoy !