Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flazefy/kumande_api
Kumande is consume management apps. So you can list and analyze your consume food or drink. Make a budget to set limit of spending. Analyze your health and sync it with your daily consume. Also you can create reminder to remind your daily food schedule or many more. This is the BE apps, created using Laravel
https://github.com/flazefy/kumande_api
backend cronjob firebase firebase-cloud-messaging firebase-realtime-database laravel line-bot migrations mysql php rest-api swagger telegram-bot unit-testing
Last synced: about 3 hours ago
JSON representation
Kumande is consume management apps. So you can list and analyze your consume food or drink. Make a budget to set limit of spending. Analyze your health and sync it with your daily consume. Also you can create reminder to remind your daily food schedule or many more. This is the BE apps, created using Laravel
- Host: GitHub
- URL: https://github.com/flazefy/kumande_api
- Owner: FlazeFy
- Created: 2023-02-01T13:57:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T09:25:02.000Z (7 days ago)
- Last Synced: 2024-10-30T10:28:48.054Z (7 days ago)
- Topics: backend, cronjob, firebase, firebase-cloud-messaging, firebase-realtime-database, laravel, line-bot, migrations, mysql, php, rest-api, swagger, telegram-bot, unit-testing
- Language: PHP
- Homepage:
- Size: 469 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kumande Backend Documentation
https://kumande.leonardhors.id========================= Command =========================
# First Run
> composer install
> composer update
> php artisan key:generate
> php artisan storage:link
> php artisan serve# Run Application
> php artisan serve# Run Application On Custom Pors
> php artisan serve # port=****
ex : php artisan serve # port=9000# Run Migrations
> php artisan migrate# Run Seeder
> php artisan db:seed class=DatabaseSeeder
or
> php artisan db:seed# Make Controller
> php artisan make:controller Controller --resource# Make Model
> php artisan make: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# Make Deploy
> php artisan route:cache
> php artisan cache:clear
> php artisan route:clear# If migration or seeding conflic with old file
> composer dump-autoload========================= File Directory =========================
# API Controller
Directory : app/Http/Controllers/Api# Model
Directory : app/Http/Models/<< DB_TABLE_NAME >>==================================================================
Last Updated : 18 Apr 2023