FlowCMS is a free, open source, simple content management powered by Laravel, AlpineJS and TailwindCSS. Built for developers for running blogs, landing pages, use as starter admin panel and many more.
After creating your new Laravel application you can include the Flowcms package with the following command:
composer require flowcms/flowcms
Next make sure to create a new database and add your database credentials to your .env file:
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
You will also want to update your website URL inside of the APP_URL
variable inside the .env file:
APP_URL=http://localhost:8000
Update the FILESYSTEM_DRIVER
variable inside the .env file to public, so that media manager works correctly:
FILESYSTEM_DRIVER=public
php artisan flowcms:install
And we're all good to go!
Start up a local development server with php artisan serve
And, visit http://localhost:8000/.
A user should have been created for you with the following login credentials:
email:
admin@admin.com
password:password
NOTE: Please ensure to change the password immediately after the first login.
// Usage description here
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email abhisheksarmah660@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.