|
1 | | -# admin-tools |
2 | | -EasyEngine Admin Tools For v4 |
| 1 | +easyengine/admin-tools-command |
| 2 | +============================== |
3 | 3 |
|
4 | | -## Host Location |
5 | | -/opt/easyengine/admin-tools |
| 4 | +Command to manage admin tools for php based sites. |
6 | 5 |
|
7 | | -## docker-compose.yml |
8 | 6 |
|
9 | | -``` |
10 | | -/opt/easyengine/admin-tools:/var/www/html/ee-admin |
11 | | -``` |
| 7 | + |
| 8 | +Quick links: [Using](#using) | [Contributing](#contributing) | [Support](#support) |
| 9 | + |
| 10 | +## Using |
| 11 | + |
| 12 | +This package implements the following commands: |
| 13 | + |
| 14 | +### ee admin-tools |
| 15 | + |
| 16 | +Manages admin-tools on a site. |
| 17 | + |
| 18 | +~~~ |
| 19 | +ee admin-tools |
| 20 | +~~~ |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | +### ee admin-tools install |
| 27 | + |
| 28 | +Installs admin tools for EasyEngine. |
| 29 | + |
| 30 | +~~~ |
| 31 | +ee admin-tools install |
| 32 | +~~~ |
| 33 | + |
| 34 | +**EXAMPLES** |
| 35 | + |
| 36 | + # Install admin tools |
| 37 | + $ ee admin-tools install |
| 38 | + |
| 39 | + |
| 40 | + |
| 41 | +### ee admin-tools enable |
| 42 | + |
| 43 | +Enables admin tools on site. |
| 44 | + |
| 45 | +~~~ |
| 46 | +ee admin-tools enable [<site-name>] [--force] |
| 47 | +~~~ |
| 48 | + |
| 49 | +**OPTIONS** |
| 50 | + |
| 51 | + [<site-name>] |
| 52 | + Name of website to enable admin-tools on. |
| 53 | + |
| 54 | + [--force] |
| 55 | + Force enabling of admin-tools for a site. |
| 56 | + |
| 57 | +**EXAMPLES** |
| 58 | + |
| 59 | + # Enable admin tools on site |
| 60 | + $ ee admin-tools enable example.com |
| 61 | + |
| 62 | + # Force enable admin tools on site |
| 63 | + $ ee admin-tools enable example.com --force |
| 64 | + |
| 65 | + |
| 66 | + |
| 67 | +### ee admin-tools disable |
| 68 | + |
| 69 | +Disables admin-tools on given site. |
| 70 | + |
| 71 | +~~~ |
| 72 | +ee admin-tools disable [<site-name>] [--force] |
| 73 | +~~~ |
| 74 | + |
| 75 | +**OPTIONS** |
| 76 | + |
| 77 | + [<site-name>] |
| 78 | + Name of website to disable admin-tools on. |
| 79 | + |
| 80 | + [--force] |
| 81 | + Force disabling of admin-tools for a site. |
| 82 | + |
| 83 | +**EXAMPLES** |
| 84 | + |
| 85 | + # Disable admin tools on site |
| 86 | + $ ee admin-tools disable example.com |
| 87 | + |
| 88 | + # Force disable admin tools on site |
| 89 | + $ ee admin-tools disable example.com --force |
| 90 | + |
| 91 | +## Contributing |
| 92 | + |
| 93 | +We appreciate you taking the initiative to contribute to this project. |
| 94 | + |
| 95 | +Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation. |
| 96 | + |
| 97 | + |
| 98 | +### Reporting a bug |
| 99 | + |
| 100 | +Think you’ve found a bug? We’d love for you to help us get it fixed. |
| 101 | + |
| 102 | +Before you create a new issue, you should [search existing issues](https://github.com/easyengine/admin-tools-command/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version. |
| 103 | + |
| 104 | +Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/easyengine/admin-tools-command/issues/new). Include as much detail as you can, and clear steps to reproduce if possible. |
| 105 | + |
| 106 | +### Creating a pull request |
| 107 | + |
| 108 | +Want to contribute a new feature? Please first [open a new issue](https://github.com/easyengine/admin-tools-command/issues/new) to discuss whether the feature is a good fit for the project. |
| 109 | + |
| 110 | +## Support |
| 111 | + |
| 112 | +Github issues aren't for general support questions, but there are other venues you can try: https://easyengine.io/support/ |
| 113 | + |
| 114 | + |
| 115 | +*This README.md is generated dynamically from the project's codebase using `ee scaffold package-readme` ([doc](https://github.com/EasyEngine/scaffold-command)). To suggest changes, please submit a pull request against the corresponding part of the codebase.* |
0 commit comments