Fix skill issues
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Javier Feliz 2025-07-15 22:50:35 -04:00
parent a929768bf7
commit 932ebf4c27
4 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,7 @@
IMAGE_NAME = flowtodo
CONTAINER_NAME = flowtodo-web
PORT = 8889
VERSION = "latest"
.PHONY: build run rebuild
@ -16,3 +17,7 @@ run:
# Rebuild (force rebuild without cache)
rebuild:
docker build --no-cache -t $(IMAGE_NAME) .
docker-publish:
docker image tag flowtodo:latest gitgud.foo/thegrind/flowtodo:$(VERSION)
docker push gitgud.foo/thegrind/flowtodo:$(VERSION)

View File

@ -14,4 +14,5 @@ php /app/artisan config:clear
php /app/artisan config:cache
php /app/artisan view:cache
exec php /app/artisan octane:frankenphp
# exec php /app/artisan octane:frankenphp
php /app/artisan octane:start --server=frankenphp --host=0.0.0.0 --admin-port=2019 --port=8000

View File

@ -11,9 +11,9 @@ use Illuminate\Support\Facades\Route;
Route::middleware('guest')->group(function () {
Route::get('login', Login::class)->name('login');
if (config('app.enable_registration')) {
Route::get('register', Register::class)->name('register');
}
Route::get('register', Register::class)->name('register');
// if (config('app.enable_registration')) {
// }
Route::get('forgot-password', ForgotPassword::class)->name('password.request');
Route::get('reset-password/{token}', ResetPassword::class)->name('password.reset');
});

View File

@ -1,5 +1,6 @@
<?php
use App\Livewire\Auth\Login;
use App\Livewire\Settings\Appearance;
use App\Livewire\Settings\Password;
use App\Livewire\Settings\Profile;
@ -13,7 +14,7 @@ Route::middleware(['auth'])->group(function () {
'list' => Auth::user()->taskLists()->with('tasks')->orderBy('is_home', 'desc')->first()
]);
})->name('dashboard');
Route::get('{slug}', function (string $slug) {
Route::get('list/{slug}', function (string $slug) {
$list = Auth::user()
->taskLists()
->with('tasks')