JungiThemeBundle Sandbox
This sandbox is nothing other than a test platform of the JungiThemeBundle.
It's based on the Symfony Standard Edition. It comes with two prebuilt
bundles and it's fully configured - only you have to do is to download and run it., (*1)
Installing with composer
The installation is very simple and fast, only you have to do is to execute the following command., (*2)
$ php composer.phar create-project jungi/theme-bundle-sandbox dest_path @dev
Running the sandbox
The easiest way is to run the internal web server provided by PHP. You can do it by executing the following command in
your root directory of the project:, (*3)
$ php app/console server:run
After that the sandbox should be accessible under the http://localhost:8000
url., (*4)
The second way is to run the full featured web server like Apache. To get working the sandbox under the Apache you will
need to create a virtual host and save the host name to your hosts file., (*5)
<VirtualHost *:80>
ServerName jungi-sandbox.local
ServerAlias www.jungi-sandbox.local
DocumentRoot /var/www/project/web
<Directory /var/www/project/web>
AllowOverride All
Order allow,deny
Allow from All
</Directory>
</VirtualHost>
Now you should be able to access the sandbox by the http://jungi-sandbox.local
url., (*6)