Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flazefy/customanalytic_api2
CustomAnalytic2 (WW2) is a Web app about dataset, story, and forum about World War 2. Present the data using chart and text summary. Discuss with many people to get a new information, and also you can participate as content creator. Created using Laravel
https://github.com/flazefy/customanalytic_api2
backend forum laravel mysql php restful-api swagger worldwar2
Last synced: 21 days ago
JSON representation
CustomAnalytic2 (WW2) is a Web app about dataset, story, and forum about World War 2. Present the data using chart and text summary. Discuss with many people to get a new information, and also you can participate as content creator. Created using Laravel
- Host: GitHub
- URL: https://github.com/flazefy/customanalytic_api2
- Owner: FlazeFy
- Created: 2022-12-30T05:29:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-11T18:09:48.000Z (3 months ago)
- Last Synced: 2024-11-06T06:13:18.715Z (2 months ago)
- Topics: backend, forum, laravel, mysql, php, restful-api, swagger, worldwar2
- Language: PHP
- Homepage: https://ww2.leonardhors.com/
- Size: 429 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
========================= 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/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# 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 Deploy
> php artisan route:cache
> php artisan cache:clear
> php artisan route:clear========================= File Directory =========================
# Assets
CSS
Directory : public/css
Access Local Path : http://127.0.0.1:8000/css/<< CSS_FILENAME >>.css
Access Global Path : http://mifik.id/css/<< CSS_FILENAME >>.cssJS
Directory : public/js
Access Local Path : http://127.0.0.1:8000/js/<< JS_FILENAME >>.css
Access Global Path : http://mifik.id/js/<< JS_FILENAME >>.cssJSON
Directory : public/json
Access Local Path : http://127.0.0.1:8000/json/<< JSON_FILENAME >>.css
Access Global Path : http://mifik.id/json/<< JSON_FILENAME >>.cssAssets (Image, Video)
Directory : public/assets
Access Local Path : http://127.0.0.1:8000/assets/<< ASSETS_FILENAME_TYPE >>
Access Global Path : http://mifik.id/assets/<< ASSETS_FILENAME_TYPE >># API Controller
Directory : app/Http/Controllers/Api# Normal Controller
Directory : app/Http/Controllers/<< MENU_NAME/SUBMENU_NAME >># Model
Directory : app/Http/Models/<< DB_TABLE_NAME >># View
Directory : app/Http/Controllers/<< MENU_NAME/SUBMENU_NAME >>============================ Rules ===============================
# Penamaan CSS
> << CONTEXT_NAME >>_v1.0.css <= Iterate# Penamaan JS
> << CONTEXT_NAME >>_v1.0.js <= Iterate# Secret JSON
> << RANDOM_STRING >>_v1.0.js <= IterateNote :
<< v1 + 1 >>.0 If major change
v1.<< 1 + 1 >> If minor change==================================================================
Last Updated : 06 Jul 2023