Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
usermp committed Sep 10, 2024
1 parent a0d4c08 commit 682aac2
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,69 @@ return [
'with_key' => env('ARTISAN_WITH_KEY', false),
'api_key' => env('ARTISAN_API_KEY', 'YOUR KEY'),
'allowed_commands' => [
// General commands
'list',
'help',

// Make commands
'make:controller',
'make:model',
'make:migration',
'make:seeder',
'make:factory',
'make:middleware',
'make:request',
'make:resource',
'make:command',
'make:event',
'make:listener',
'make:policy',
'make:provider',
'make:test',
'make:job',
'make:rule',
'make:mail',
'make:notification',

// Migrations
'migrate',
//add other command
'migrate:rollback',
'migrate:refresh',
'migrate:reset',
'migrate:status',

// Seeder
'db:seed',
'db:wipe',

// Cache
'cache:clear',
'cache:forget',
'config:clear',
'config:cache',
'route:cache',
'route:clear',
'view:cache',
'view:clear',

// Queue
'queue:work',
'queue:listen',
'queue:restart',
'queue:table',
'queue:flush',

// Maintenance
'down',
'up',

// Others
'optimize',
'serve',
'schedule:run',
'schedule:work',

// Add other commands as needed
],
];
```
Expand Down

0 comments on commit 682aac2

Please sign in to comment.