-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to execute the ruckusing-migration through http request #160
Comments
Its definitely possible, but as for implementation, it depends on your If you do not use a framework, you will have to map a URL request to However apache ultimately reaches and executes the PHP, that script
|
Thanks for the reply. |
As mentioned in #134
You can manually build arguments in your script and then run ruckus with exec() function in php something like this: exec('./bin/ruckus.php db:migrate', $output);
echo implode('<br>', $output); |
Thanks let me try this. |
Is it possible to execute the migration command through http request?
Actually i wanted to create some services which will update the database based on the parameter i.e. task, ENV.
The text was updated successfully, but these errors were encountered: