-
Install composer:
curl -s http://getcomposer.org/installer | php
-
Install the vendor libraries by running composer:
php composer.phar --verbose install
-
Setup a VirtualHost with the following configuration (modify as needed):
<VirtualHost *:80> ServerName www.queuemanager.local DocumentRoot "/var/www/QueueManager/web" DirectoryIndex app.php
<Directory "/var/www/QueueManager/web"> Options Indexes FollowSymLinks MultiViews AllowOverride All Allow from All
-
Create a copy of app/config/parameter.yml.dist to app/config/parameter.yml
-
Update all the required configs.
-
Run the following commands:
php app/console doctrine:database:create chmod -R 0777 app/cache
-
Routes Queue
project_core_add_message: pattern: /message defaults: { _controller: ProjectBundleCoreBundle:Message:addMessage } requirements: _method: POST
project_core_get_message: pattern: /message defaults: { _controller: ProjectBundleCoreBundle:Message:getMessage } requirements: _method: GET
-
Enjoy!
isnoman2000/QueueManager
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|