luanardev/lumis

LUANAR IMIS.

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project


README

Requirements

The current package requirements are:

  • Laravel >= 9.x
  • PHP >= 8.1

Installation

Run the command

composer create-project luanardev/lumis

Configuration

Open livewire.php in the config directory.

Set asset_url to the path of Livewire JavaScript assets, for cases where your app's domain root is not the correct path. By default, LUMIS will load its JavaScript assets from the app's "relative root".

asset_url = '/lumis/public'

Database Migration

Open .env file at the root of the directory

Add database connection details

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=lumis
DB_USERNAME=root
DB_PASSWORD=

Run Migrations

php artisan migrate
php artisan db:seed

Creating Users

Create Super User

php artisan create-superuser

Create Any User

php artisan create-user