ignitedcms/ignitedcms

Laravel CMS

Installs: 42

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

v1 2024-02-05 20:23 UTC

This package is auto-updated.

Last update: 2024-04-06 17:31:47 UTC


README

Latest Version on Packagist Total Downloads GitHub Actions

A simple Laravel CMS that is completely free to use.

Installation

First install a fresh copy of Laravel 10, make sure you have a PHP version of 8.1 or above and you are using MySQL. (We strongly advise to ONLY use this with a fresh install!)

You can install Laravel via composer:

composer create-project laravel/laravel example-app

Now cd into the example-app directory and install ignitedcms

cd example-app

Run composer

composer require ignitedcms/ignitedcms

Finally, publish the assets by running, do NOT skip this step!

php artisan vendor:publish --tag=assets --force
php artisan vendor:publish --tag=config --force
php artisan vendor:publish --tag=views --force

Now that you have done that create a fresh database called 'ignitedcms' and change the settings in your .env file so it points to your database e.g

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

Run the migrations

php artisan migrate

Finally run

php artisan serve

Usage

Navigate to and begin the install

http://localhost:8000/installer

To access the dashboard navigate to

http://localhost:8000/login

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email fernandes_craig@hotmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.