From fbed56d25301ad09eb1299ba18aeb54bc3b35f21 Mon Sep 17 00:00:00 2001 From: mattronix Date: Thu, 2 Nov 2023 17:46:14 +0000 Subject: [PATCH] better formating --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc51437..8edbfa4 100644 --- a/README.md +++ b/README.md @@ -103,21 +103,30 @@ GRANT ALL PRIVILEGES ON printer_manager_admin.* TO 'printer-manager-admin'@'loca FLUSH PRIVILEGES; exit; cp .env.example .env +``` vim .env (edit the db config) +``` php artisan key:generate php artisan migrate php artisan make:filament-user +``` +``` vim /etc/apache2/sites-enabled/000-default.conf (set DocumentRoot /var/www/html/printer-manager-admin/public) -vim /etc/apache2/apache2.conf add the following: +vim /etc/apache2/apache2.conf +``` +add the following: +``` Options Indexes FollowSymLinks AllowOverride All Require all granted +``` Then Run: +``` a2en enable rewrite systemctl restart apache2 -You are good to go! ``` +You are good to go!