Skip to content

Commit

Permalink
Merge pull request #105 from pelican-dev/rmo/UpdateArtisan
Browse files Browse the repository at this point in the history
Update Artisan
  • Loading branch information
RMartinOscar authored Jan 12, 2025
2 parents e9746fc + ae6ccd4 commit 26c9287
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions docs/panel/advanced/artisan.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Artisan Commands
This is very much a WIP! Many Many commands, Layout might change.

Updated: 8/18/2024 ~notCharles
Updated: 01/11/2025
## User Commands
### Create a User

Expand Down Expand Up @@ -126,6 +126,21 @@ Options:
--ansi|--no-ansi Force (or disable --no-ansi) ANSI output
-n, --no-interaction Do not ask any interactive question
```
### Editing Queue Service
```sh
php artisan p:environment:queue-service [options]
```

```sh
Options:
--service-name[=SERVICE-NAME] Name of the queue worker service.
--user[=USER] The user that PHP runs under.
--group[=GROUP] The group that PHP runs under.
--overwrite Force overwrite if the service file already exists.
-q, --quiet Do not output any message
--ansi|--no-ansi Force (or disable --no-ansi) ANSI output
-n, --no-interaction Do not ask any interactive question
```
### Editing Session
```sh
php artisan p:environment:session [options]
Expand All @@ -142,14 +157,28 @@ Options:
--ansi|--no-ansi Force (or disable --no-ansi) ANSI output
-n, --no-interaction Do not ask any interactive question
```
### Setting cache, queue & session driver at once
```sh
php artisan p:redis:setup [options]
```
```sh
Options:
--redis-host[=REDIS-HOST] Redis host to use for connections.
--redis-user[=REDIS-USER] User used to connect to redis.
--redis-pass[=REDIS-PASS] Password used to connect to redis.
--redis-port[=REDIS-PORT] Port to connect to redis over.
-q, --quiet Do not output any message
--ansi|--no-ansi Force (or disable --no-ansi) ANSI output
-n, --no-interaction Do not ask any interactive question
```
### Editing Setup
```sh
php artisan p:environment:setup [options]
```
```sh
Options:
--url[=URL] The URL that this Panel is running on.
-q, --quiet Do not output any message
--ansi|--no-ansi Force (or disable --no-ansi) ANSI output
-n, --no-interaction Do not ask any interactive question
Expand Down

0 comments on commit 26c9287

Please sign in to comment.