https://github.com/danielsan80/symfony-app
The base Symfony app, with users and admin area
https://github.com/danielsan80/symfony-app
exp old symfony
Last synced: about 2 months ago
JSON representation
The base Symfony app, with users and admin area
- Host: GitHub
- URL: https://github.com/danielsan80/symfony-app
- Owner: danielsan80
- License: mit
- Created: 2013-03-04T16:39:54.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-10-30T14:26:43.000Z (over 12 years ago)
- Last Synced: 2025-02-21T14:23:03.662Z (over 1 year ago)
- Topics: exp, old, symfony
- Language: CSS
- Size: 31.6 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
My Symfony App
========================
This repo is a Symfony (2.1) App. It is not to install, I use it to have several **snapshots**
of a generic Symfony application in several **building phases**.
Each branch is one of this phases. The branch master keep only this README.md to explane each branch.
The idea is to mantain my own repository and fork from a specific snapshot to start with a new application.
If this idea works, my proposal is to make your own repository with your set of snapshots. Else you can fork one of mine.
If you see a mistake in this text I will gratefull if you could correct it an make me a pull request so I can **improve my written english** too.
helloworld
----------------------------------
It's a simple hello world application. One route (/) that write "Hello World!".
To install Symfony I followed this link:
* http://symfony.com/download
Then I did some basic and helpfull thinks:
* Bootstrap,
* Backbone,
* JQuery
* a default layout is defined,
* .gitignored is set
* The Acme Demo Bundle is removed
* A Main Bundle is created
* ...
users
----------------------------------
Starting from **helloworld** I installed the FOSUserBundle and set my favorite options.
I followed this docs:
* https://github.com/FriendsOfSymfony/FOSUserBundle
admin
----------------------------------
Starting from **users** I installed the SonataAdminBundle and the SonataUserBundle
so I can manage users on powerfull and extendible backend.
I followed this docs:
* http://sonata-project.org/bundles/admin/master/doc/index.html
* http://sonata-project.org/bundles/doctrine-orm-admin/master/doc/index.html
* http://sonata-project.org/bundles/admin/master/doc/reference/installation.html
* http://sonata-project.org/bundles/admin/master/doc/reference/getting_started.html
* http://sonata-project.org/bundles/admin/master/doc/reference/configuration.html
* http://sonata-project.org/bundles/user/master/doc/reference/installation.html
* http://sonata-project.org/bundles/user/master/doc/reference/advanced_configuration.html
googleauth
----------------------------------
Starting from **users** I installed the FOSGoogleBundle
so I can register in mine application in a click.
I followed this docs:
* https://github.com/bitgandtter/FOSGoogleBundle
admin_google
----------------------------------
Marging from **admin** and **googleauth** I get both the SonataAdminBundle then the FOSGoogleBundle
features.