- Demo theme from OctoberCMS
- Blank Bootstrap 3 theme with Font Awesome, jQuery and built using LESS
- .env.example file for environment configuration
##Requirements
PHP >= 5.4.0
MCrypt PHP Extension
Installation instructions for the mcrypt extension are available here.
##How to Install
$ git clone https://github.com/surahmans/OctoberCMS-Starter-Kit.git octobercms
https://github.com/surahmans/OctoberCMS-Starter-Kit/archive/master.zip
$ cd octobercms
$ curl -s https://getcomposer.org/installer | php
$ php composer.phar install
$ cd octobercms
$ composer install
copy the .env.example file to .env
cp .env.example .env
Edit your .env file like below
APP_DEBUG=true
APP_KEY=SomeRandomString
APP_URL=http://localhost
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
Generate the app key
php artisan key:generate
Run this command will build the database tables
php artisan october:up
php artisan serve
Open in your browser, http://localhost:8000
You can access the backend url at http://localhost:8000/backend
username: admin
password: admin
This is free software distributed under the terms of the MIT license
Inspired by and based on Laravel-4-Bootstrap-Starter-Site
Any questions, feel free to contact me.