Removed MySQL references (MySQL changed to DB)
This commit is contained in:
parent
5396d580b3
commit
afd99c12b5
21 changed files with 80 additions and 78 deletions
|
|
@ -53,7 +53,7 @@ As mentioned earlier, PHP Censor is powered by plugins, there are several phases
|
|||
|
||||
* `setup` - This phase is designed to initialise the build procedure.
|
||||
* `test` - The tests that should be run during the build. Plugins run during this phase will contribute to the success or failure of the build.
|
||||
* `complete` - Always called when the `test` phase completes, regardless of success or failure. **Note** that is you do any mysql stuff here, you will need to add the mysql credentials to this section as well, as it runs in a separate instance.
|
||||
* `complete` - Always called when the `test` phase completes, regardless of success or failure. **Note** that is you do any DB stuff here, you will need to add the DB credentials to this section as well, as it runs in a separate instance.
|
||||
* `success` - Called upon success of the `test` phase.
|
||||
* `failure` - Called upon failure of the `test` phase.
|
||||
* `fixed` - Called upon success of the `test` phase if the previous build of the branch was a success.
|
||||
|
|
|
|||
|
|
@ -16,5 +16,5 @@ php-censor:
|
|||
default_user_id: 1
|
||||
```
|
||||
|
||||
where you can get the `default_user_id by` logging into the mysql database and selecting your user ID from the `users` table in
|
||||
where you can get the `default_user_id` by logging into the database and selecting your user ID from the `users` table in
|
||||
the PHP Censor database.
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ What you'll need
|
|||
* A web server (Nginx or Apache)
|
||||
* [Composer](https://getcomposer.org/download/)
|
||||
* [Git](http://git-scm.com/downloads)
|
||||
* A MySQL server to connect to.
|
||||
* A DB server to connect to (MySQL/MariaDB or PostgreSQL).
|
||||
* The following functions need to be enabled: `exec()`, `shell_exec()` and `proc_open()` in php.ini.
|
||||
* PHP must have OpenSSL support enabled.
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Unless already running a build, the worker will pick up and start running new bu
|
|||
creation.
|
||||
|
||||
The worker is the recommended way to run PHP Censor builds. You can run several workers all watching one queue,
|
||||
allowing jobs to be run simultaneously without the overhead of polling your MySQL database.
|
||||
allowing jobs to be run simultaneously without the overhead of polling your database.
|
||||
|
||||
If you can't run Beanstalkd on your server, or would prefer to run builds on a regular schedule, you should consider
|
||||
using the [running builds via Cron](workers/cron.md).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue