https://github.com/flazefy/wardrobe-be
Wardrobe is your ultimate clothing assistant, helping you organize outfits, track history, manage schedules, and plan weekly looks. Unsure what to wear? Our smart outfit randomizer suggests perfect options based on availability and favorites. Join us and we will keeps your style decision effortless and organize. Created using Laravel
https://github.com/flazefy/wardrobe-be
api-testing audit-log authentication excel laravel migrations php rest-api sanctum seeder telegram-bot test-reporting unit-testing
Last synced: 12 months ago
JSON representation
Wardrobe is your ultimate clothing assistant, helping you organize outfits, track history, manage schedules, and plan weekly looks. Unsure what to wear? Our smart outfit randomizer suggests perfect options based on availability and favorites. Join us and we will keeps your style decision effortless and organize. Created using Laravel
- Host: GitHub
- URL: https://github.com/flazefy/wardrobe-be
- Owner: FlazeFy
- Created: 2024-04-05T23:13:44.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-19T23:46:18.000Z (12 months ago)
- Last Synced: 2025-02-20T00:32:39.261Z (12 months ago)
- Topics: api-testing, audit-log, authentication, excel, laravel, migrations, php, rest-api, sanctum, seeder, telegram-bot, test-reporting, unit-testing
- Language: PHP
- Homepage: https://wardrobe.leonardhors.site/
- Size: 514 KB
- Stars: 1
- 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