Uses the pages plugin. Adjust accordingly to you needs.
October CMS and a basic knowledge of how October CMS works. Check the docs for more info
Uses the pages plugin. Adjust accordingly to you needs.
October CMS and a basic knowledge of how October CMS works. Check the docs for more info
<?php | |
// Install A plugin from the Rainlab Deploy Console | |
Artisan::call('plugin:install', ['name' => 'Acme.BlogPost', '--force' => true]); | |
echo Artisan::output(); | |
// Remove A plugin from the Rainlab Deploy Console | |
Artisan::call('plugin:remove', ['name' => 'Acme.BlogPost', '--force' => true]); | |
echo Artisan::output(); |
#!/bin/bash | |
# | |
# Bash file to create json output of Bootstrap Icons. | |
# Used for Tailor, an OctoberCMS Feature | |
# Requires jq: https://stedolan.github.io/jq | |
# | |
index=0 | |
for file in $(ls *.svg); |
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "october:install", | |
"type": "shell", | |
"command": "php artisan october:install", | |
"problemMatcher": [] |
This tutorial is based on a clean Ubuntu-22.04 install. Use at your own risk.