LswAutomaticUpdateBundle
Symfony2 bundle that enables automatic updates of the application from the Web Debug Toolbar.
Install / Use
/learn @leaseweb/LswAutomaticUpdateBundleREADME
Deprecated
This repository is no longer being actively maintained. We encourage you to not use this code. If you rely on this code you might want to fork the repository to keep your systems from breaking, if we remove this repository in the future.
LswAutomaticUpdateBundle

Symfony2 bundle that enables automatic updates of the application from the Web Debug Toolbar.

Installation
Installation is broken down in 4 easy steps.
Step 1: Download LswAutomaticUpdateBundle using composer
Add LswAutomaticUpdateBundle in your composer.json:
{
"require": {
"leaseweb/automatic-update-bundle": "*",
...
}
}
Now tell composer to download the bundle by running the command:
$ php composer.phar update leaseweb/automatic-update-bundle
Composer will install the bundle to your project's vendor/leaseweb directory.
Step 2: Enable the bundle
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
...
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
...
$bundles[] = new Lsw\AutomaticUpdateBundle\LswAutomaticUpdateBundle();
}
}
Step 3: Add routes to support automatic update
Add the following lines to app/config/routing_dev.yml:
automatic_update:
resource: "@LswAutomaticUpdateBundle/Resources/config/routing/update.yml"
Step 4: Allow access to the automatic update actions
Add the following lines to app/config/security.yml:
automatic_update:
pattern: ^/update/
security: false
Configuration
In parameters.yml you can specify the following:
parameters:
automatic_update.options:
secret: "SomeVerySecretPassword"
dry_run_commands:
- "svn status -u"
- "php composer.phar update --dry-run --ansi"
- "app/console doctrine:schema:update --dump-sql"
execute_commands:
- "svn up"
- "php composer.phar update --ansi"
- "app/console doctrine:schema:update --force"
NB: You might want to run 'apache2-mpm-itk' to enable your website to run as a normal user, not as 'www-data', because this will simplify file rights management.
License
This bundle is under the MIT license.
The "circular arrows" icon in the web debug toolbar is part of the Picas icon set (official website: http://www.picasicons.com). The icon is licensed and may only be used to identifying the LswAutomaticUpdateBundle in the Symfony2 web debug toolbar. All ownership and copyright of this icon remain the property of Rok Benedik.
Related Skills
node-connect
339.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
339.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.8kCommit, push, and open a PR
