by VhieArch
October is a powerful CMS based on Laravel PHP Framework.
-
Clone to your base project directory.
git clone https://bitbuket.org/vhiearch/october-boilerplate.git <project-name>
-
Don't forget to remove
.git
folder, create your own repository. -
Install composer dependencies.
composer install
-
Create configuration file
.env
(copy from.env.example
) and set the database configuration.DB_HOST=localhost DB_DATABASE=<database-name> DB_USERNAME=<database-user> DB_PASSWORD=<database-password>
-
Migrate October database.
php artisan october:up
-
Install frontend library (it's optional, folder
bower_components
exists by default).bower install
-
For security reason, please generate new application key.
php artisan key:generate
In this boilerplate, we've installed:
- RainLab.User
- RainLab.Pages
- RainLab.Sitemap
- RainLab.GoogleAnalytics
- October.Drivers
- Bedard.Debugbar
- Triasrahman.Premailer
- Mja.Mail
More plugins that we recommend (not installed yet):
To install plugin, run the command:
php artisan plugin:install <plugin-name>
All frontend libraries are managed using bower. These packages are installed by default:
To install additional library, run the command:
bower install --save <package-name>
Please follow the following guides and code standards: