https://github.com/arnaud-lb/sfbootstrap
https://github.com/arnaud-lb/sfbootstrap
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arnaud-lb/sfbootstrap
- Owner: arnaud-lb
- License: mit
- Created: 2011-11-27T10:45:38.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-11-27T12:35:47.000Z (over 13 years ago)
- Last Synced: 2025-01-10T19:23:21.086Z (5 months ago)
- Language: PHP
- Homepage:
- Size: 352 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Symfony standard + a few bundles
Added bundles:
- [FOSUserBundle](https://github.com/FriendsOfSymfony/FOSUserBundle)
- [MtHamlBundle](https://github.com/arnaud-lb/MtHamlBundle)Install:
``` sh
git clone git://github.com/arnaud-lb/sfbootstrap.git
git submodule update --init
```app/config/parameters.yml:
``` yaml
parameters:
database_driver: pdo_mysql
database_host: localhost
database_port: ~
database_name: sfbootstrap
database_user: root
database_password: ~mailer_transport: smtp
mailer_host: localhost
mailer_user: ~
mailer_password: ~locale: en
secret: ThisTokenIsNotSoSecretChangeIt
```Create db tables:
``` sh
./app/console doctrine:schema:create
```