Fix skill issues
This commit is contained in:
parent
a929768bf7
commit
932ebf4c27
5
Makefile
5
Makefile
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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');
|
||||
});
|
||||
|
@ -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')
|
||||
|
Loading…
x
Reference in New Issue
Block a user