
All Source and content copied and paste from their original documents.
Please follow those
Twill Doc- https://twill.io/docs/
Laravel Doc – https://laravel.com/docs/8.x
Steps to install Twill CMS and run
1 Install Laravel
composer create-project laravel/laravel twill-demo-cms
2. Create a new blank database and update your .env file in laravel root folder
3. Install laravel UI for laravel auth
composer require laravel/ui
php artisan ui vue --auth
4. Migrate your laravel basic migrations
php artisan migrate
5. Install Twill using composer command
composer require area17/twill:"^2.0"
6 . Update your .env with twill basic Configuration required
APP_URL=twillcms.local
ADMIN_APP_URL=twillcms.local
ADMIN_APP_PATH=admin
SESSION_DOMAIN=.twillcms.local
MEDIA_LIBRARY_ENDPOINT_TYPE=local
MEDIA_LIBRARY_IMAGE_SERVICE=A17\Twill\Services\MediaLibrary\Glide
** Note:: Don’t forget to create your virtual host for twill running.
7. Install Twill using php artisan command
php artisan twill:install
All done, php artisan config:cache
and run you setup with your virtual host – twillcms.local