-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,29 @@ | ||
### RAPIDKIT -> SUPPORT FROM LARAVEL `11.X` | ||
|
||
## Installation | ||
### # Installation | ||
|
||
``` | ||
composer require intelrx/rapidkit | ||
``` | ||
|
||
### artisan commands | ||
### # Artisan commands | ||
|
||
Automatic Package installation and configuration | ||
``` | ||
> php artisan rapid:install | ||
``` | ||
|
||
Create new module with controller, Model, Migration and view resources. {--path=} is optional. | ||
``` | ||
> php artisan rapid:make Country --path=Master | ||
``` | ||
|
||
### # DATABASE BACKUP COMMANDS | ||
``` | ||
> backup:clean Clean it by configured number of days. | ||
> backup:list Display a list of all backups. | ||
> backup:monitor Monitor the health of all backups. | ||
> backup:run Run the backup. | ||
> backup:run --only-db Only Database backup | ||
> backup:run --only-files FileSystem backup | ||
``` |