2016-10-22 16:58:57 +00:00
|
|
|
# Contributing
|
2016-10-22 17:22:17 +00:00
|
|
|
|
|
|
|
There is quite a lot todo and planned. If you like to contribute, pick any of the below topics or contact me directly.
|
|
|
|
|
|
|
|
Contributors will be credited within the intranet and on the github page.
|
|
|
|
|
|
|
|
|
2016-11-03 08:09:39 +00:00
|
|
|
## Roadmap
|
|
|
|
|
|
|
|
Please see [ROADMAP](https://github.com/cytopia/devilbox/issues/23) for what is planned.
|
2016-10-22 17:22:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Documentation
|
|
|
|
|
|
|
|
* [ ] Improve documentation
|
|
|
|
* [ ] Remove all typos / wrong grammar
|
|
|
|
|
|
|
|
## Intranet
|
|
|
|
|
2016-10-30 13:40:29 +00:00
|
|
|
* [X] View emails sent/received within PHP dockers
|
2016-10-22 17:22:17 +00:00
|
|
|
* [ ] Better layout
|
|
|
|
* [ ] Better logos
|
|
|
|
* [ ] Try to remove as much vendor dependencies as possible
|
2018-08-09 21:01:33 +00:00
|
|
|
|
|
|
|
## Updating Vendors
|
|
|
|
|
|
|
|
#### phpMyAdmin
|
|
|
|
|
|
|
|
The following settings must be applied to `config.inc.php`:
|
|
|
|
```php
|
|
|
|
<?php
|
|
|
|
$cfg['TempDir'] = '/tmp';
|
|
|
|
$cfg['CheckConfigurationPermissions'] = false;
|
|
|
|
|
|
|
|
$cfg['blowfish_secret'] = 'add whatever value here';
|
|
|
|
|
|
|
|
$cfg['Servers'][$i]['host'] = 'mysql';
|
|
|
|
$cfg['Servers'][$i]['AllowNoPassword'] = true;
|
|
|
|
```
|