Skip to content

Commit

Permalink
Add clockwork and remove telescope
Browse files Browse the repository at this point in the history
  • Loading branch information
anisAronno committed Jan 18, 2024
1 parent 769f062 commit 23a7aa5
Show file tree
Hide file tree
Showing 9 changed files with 73 additions and 336 deletions.
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ VITE_PUSHER_HOST="${PUSHER_HOST}"
VITE_PUSHER_PORT="${PUSHER_PORT}"
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
TELESCOPE_ENABLED=true
ACTIVITY_LOGGER_ENABLED=true
LOG_VIEWER_ENABLED=true
PULSE_INGEST_DRIVER=redis
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
sed -i 's/DB_PASSWORD=.*/DB_PASSWORD=${{ secrets.DB_PASSWORD }}/' .env
echo "APP_ENV=production" >> .env
echo "APP_DEBUG=false" >> .env
echo "TELESCOPE_ENABLED=false" >> .env
- name: Generate application key
run: php artisan key:generate
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,16 @@ Welcome to the Laravel Starter Project! This repository provides a kickstart set

## Uses Packages

- Laravel [Breeze](https://laravel.com/docs/10.x/starter-kits#laravel-breeze) (authentication and application starter kits)
- Laravel [Breeze](https://laravel.com/docs/10.x/starter-kits#laravel-breeze) (Used only backend code for authentication)
- [Spatie](https://github.com/spatie/laravel-permission) Roll and Permission
- Laravel [Pulse](https://laravel.com/docs/10.x/pulse) (Application's performance Monitoring)
- Laravel [Telescope](https://laravel.com/docs/10.x/telescope) (Request Monitoring)
- Laravel [Clockwork](https://github.com/itsgoingd/clockwork) (Request Monitoring)
- Laravel [Horizon](https://laravel.com/docs/10.x/horizon) (Job And Queue manage)
- Laravel [Debugbar](https://github.com/barryvdh/laravel-debugbar) (Monitoring every request)
- Laravel [Settings](https://github.com/anisAronno/laravel-settings) (Personal Package for application settings)
- Laravel [Media Gallery](https://github.com/anisAronno/laravel-media-gallery) (Personal Package for file management)
- Laravel [Activity Log](https://github.com/spatie/laravel-activitylog) (Track User Activity)
- Beautiful [Log Viewer](https://github.com/opcodesio/log-viewer) for local and production
- [Flowbite](https://flowbite.com/) For Tailwind Component
- Laravel [Sweet Alert](https://github.com/realrashid/sweet-alert)
- Laravel [Pint](https://laravel.com/docs/10.x/pint) For code style fixing

Expand Down
1 change: 0 additions & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule): void
{
$schedule->command('telescope:prune')->daily();
$schedule->command('activitylog:clean')->daily();
$schedule->command('cache:prune-stale-tags')->hourly();

Expand Down
66 changes: 0 additions & 66 deletions app/Providers/TelescopeServiceProvider.php

This file was deleted.

4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "anisaronno/laravel-starter",
"type": "project",
"version": "0.2.0",
"version": "0.2.1",
"description": "A perfect laravel starter project for any kind of project.",
"keywords": [
"laravel",
Expand All @@ -22,6 +22,7 @@
"anisaronno/laravel-media-gallery": "0.4.1",
"anisaronno/laravel-settings": "1.1.0",
"guzzlehttp/guzzle": "^7.2",
"itsgoingd/clockwork": "^5.1",
"laravel/framework": "^10.10",
"laravel/horizon": "^5.21",
"laravel/pulse": "^1.0@beta",
Expand All @@ -39,7 +40,6 @@
"laravel/breeze": "^1.27",
"laravel/pint": "^1.13",
"laravel/sail": "^1.18",
"laravel/telescope": "^4.17",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.1",
Expand Down
141 changes: 69 additions & 72 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@
App\Providers\EventServiceProvider::class,
App\Providers\HorizonServiceProvider::class,
App\Providers\RouteServiceProvider::class,
App\Providers\TelescopeServiceProvider::class,
])->toArray(),

/*
Expand Down
Loading

0 comments on commit 23a7aa5

Please sign in to comment.