Skip to content

isnoman2000/QueueManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Symfony 2.0 Project Bootstrapping

  1. Install composer:

    curl -s http://getcomposer.org/installer | php

  2. Install the vendor libraries by running composer:

    php composer.phar --verbose install

  3. 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

  4. Create a copy of app/config/parameter.yml.dist to app/config/parameter.yml

  5. Update all the required configs.

  6. Run the following commands:

    php app/console doctrine:database:create chmod -R 0777 app/cache

  7. 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

  8. Enjoy!

About

A symfony2 QueueManagement Server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors