trovcms/trovcms

A CMS start kit for websites, built on Filament and Laravel.

Installs: 89

Dependents: 0

Suggesters: 0

Security: 0

Stars: 15

Watchers: 2

Forks: 0

Type:project

v0.1.10 2022-09-21 16:00 UTC

This package is auto-updated.

Last update: 2024-03-21 19:59:58 UTC


README

TrovCMS is a starter kit for websites, built on Filament and Laravel.

Installation

Step 1

Install with composer.

composer create-project trovcms/trovcms <my-cool-trov-app>

Step 2

Then, update your database settings in .env to what is appropriate for your app.

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

Step 3

And finally, run the Trov install command.

cd <my-cool-trov-app>
php artisan trov:install

Adding modules

TrovCMS comes with some additional modules that you can install into your application.

php artisan trov:add

Module Options

  • FAQs
  • Blog
  • Airport (Landing Pages)
  • Sheets (Unbranded Pages, typically used for SEO initiatives)
  • Discovery Center (This is similar to a blog with Topics and Articles, typically used for SEO initiatives)

Demo Content

TrovCMS comes with demo content that you can use to seed your database if you just want to explore the CMS. To seed it you can either run:

php artisan trov:demo

or

php artisan db:seed --class=DemoSeeder

License

TrovCMS is open-sourced software licensed under the MIT license.