You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commands offer additional functionality like providing debug information and
4
+
performing maintenance tasks.
5
+
---
6
+
1
7
# Commands
2
8
3
-
Commands are intended to be run from within the CLI of the container. Each command needs to be prefixed with `php artisan`, example: `php artisan about`.
9
+
Commands are intended to be run from within the CLI of the container and from the application's root directory.
10
+
11
+
* In my build the root directory is located at: `/var/www/html`
12
+
* In LinuxServer's build the root directory is located at: `/app/www`
13
+
14
+
### Core commands
15
+
16
+
Core commands exist at the framework level and might be extended to provide additional functionality.
17
+
18
+
<table><thead><tr><thwidth="261">Command</th><th>Description</th></tr></thead><tbody><tr><td><code>about</code></td><td>Provides information on the current version of Speedtest Tracker, Laravel and Filament.</td></tr></tbody></table>
19
+
20
+
### Application commands
21
+
22
+
Application commands are built to extend Speedtest Tracker's functionality from the CLI.
23
+
24
+
<table><thead><tr><thwidth="261">Command</th><th>Description</th></tr></thead><tbody><tr><td><code>app:install</code></td><td>Installs a fresh version of Speedtest Tracker. If you have an existing install <em><strong>this will delete all data</strong></em>.</td></tr><tr><td><code>app:reset-user-password</code></td><td>Can be used to reset a user's password.</td></tr><tr><td><code>app:update-user-role</code></td><td>Can be used to change a user's role.</td></tr></tbody></table>
25
+
26
+
### Maintenance commands
27
+
28
+
Maintenance commands help fix issues that might crop up over time.
4
29
5
-
<table><thead><tr><thwidth="261">Command</th><th>Description</th></tr></thead><tbody><tr><td><code>about</code></td><td>Provides information on the current version of Speedtest Tracker, Laravel and Filament.</td></tr><tr><td><code>app:install</code></td><td>Installs a fresh version of Speedtest Tracker. If you have an existing install <em><strong>this will delete all data</strong></em>.</td></tr><tr><td><code>app:reset-user-password</code></td><td>Can be used to reset a user's password.</td></tr><tr><td><code>app:update-user-role</code></td><td>Can be used to change a user's role.</td></tr></tbody></table>
30
+
<table><thead><tr><thwidth="261">Command</th><th>Description</th></tr></thead><tbody><tr><td><code>app:fix-result-statuses</code></td><td>Reviews the data payload of each result and corrects the status attribute based on Ookla's CLI response.</td></tr></tbody></table>
0 commit comments