Skip to content

Commit faa7164

Browse files
committed
Remove Flux Pro installation command
1 parent da3f205 commit faa7164

4 files changed

Lines changed: 11 additions & 103 deletions

File tree

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@ Or, if you prefer, use the composer create-project command instead
2020
composer create-project lcamero/saas-kit
2121
```
2222

23-
You will be asked if you wish to install a Flux UI pro license after the project is created so it configures it right away. Otherwise, you may activate it later with the following command
24-
25-
```bash
26-
php artisan flux:activate
27-
```
28-
2923
Run migrations with
3024

3125
```bash
@@ -46,6 +40,16 @@ This will run vite to serve your asset and listen for changes (`npm run dev`), r
4640

4741
For the time being you may reference the base setup in base kit documentation [Setup](https://github.com/lcamero/laravel-starter-kit?tab=readme-ov-file#setup). Any additional steps will be listed below.
4842

43+
### Configure Livewire Flux UI Pro
44+
45+
You need to provide your license information to activate the pro license with the following command:
46+
47+
```bash
48+
php artisan flux:activate
49+
```
50+
51+
More information can be found in the [Flux UI Docs](https://fluxui.dev/docs/installation#getting-started)
52+
4953
### Current Differences from base Starter Kit
5054

5155
- Removed [Laravel Pulse][https://laravel.com/docs/12.x/pulse]. This package is removed from the installation as it provides less value out of the box in the multi-tenant model this kit uses. Some configuration changes can be applied to resolve users per tenant and show the information in the cards, but it is probably more work to get everything setup properly than the use it'll get at the moment. Also, other tools can be used to track performance and usage

app/Console/Commands/InstallCommand.php

Lines changed: 0 additions & 51 deletions
This file was deleted.

app/Console/Commands/Installers/FluxPro.php

Lines changed: 0 additions & 44 deletions
This file was deleted.

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@
6666
"post-create-project-cmd": [
6767
"@php artisan key:generate --ansi",
6868
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
69-
"@php artisan migrate --graceful --ansi",
70-
"@php artisan app:install"
69+
"@php artisan migrate --graceful --ansi"
7170
],
7271
"dev": [
7372
"Composer\\Config::disableProcessTimeout",

0 commit comments

Comments
 (0)