Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flazefy/wardrobe-be
created using laravel 11
https://github.com/flazefy/wardrobe-be
api-testing audit-log authentication laravel php rest-api sanctum test-reporting unit-testing
Last synced: 4 days ago
JSON representation
created using laravel 11
- Host: GitHub
- URL: https://github.com/flazefy/wardrobe-be
- Owner: FlazeFy
- Created: 2024-04-05T23:13:44.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-12-31T16:37:11.000Z (6 days ago)
- Last Synced: 2024-12-31T17:27:27.647Z (6 days ago)
- Topics: api-testing, audit-log, authentication, laravel, php, rest-api, sanctum, test-reporting, unit-testing
- Language: PHP
- Homepage: https://wardrobe.leonardhors.site/
- Size: 165 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gudangku Documentation
https://wardrobe.leonardhors.site========================= Command =========================
# First Run
> composer install
> composer update
> php artisan key:generate
> php artisan storage:link
> php artisan serve# Run Application
> php artisan serve# Run Queue Job
> php artisan queue:work# Run Application On Custom Pors
> php artisan serve # port=****
ex : php artisan serve # port=9000# Run Migrations
> php artisan migrate# Run Migrations On Specific file
> php artisan migrate --path=database/migrations/migration/file.php# Run Seeder
> php artisan db:seed class=DatabaseSeeder
or
> php artisan db:seed# Run Scheduler
> php artisan schedule:run# Make Controller
> php artisan make:controller Controller --resource# Make Model
> php artisan make:model Model# Make Seeder
> php artisan make:seeder Seeder# Make Factories
> php artisan make:factory Factory# Make Migrations
> php artisan make:migration create__table# Make Migrations on Specific File
> php artisan migrate # path=/database/migrations/.php# Make Middleware
> php artisan make:middleware# Make Mail
> php artisan make:mail Email# Make Test
> php artisan make:test Test# Make Deploy
> php artisan route:cache
> php artisan cache:clear
> php artisan route:clear