Skip to content

Instantly share code, notes, and snippets.

View artistro08's full-sized avatar
🏠
Working from home

Devin Green artistro08

🏠
Working from home
View GitHub Profile
@artistro08
artistro08 / october.yaml
Created May 18, 2020 12:02
OctoberCMS Setup via OC Bootstrapper
app:
url: https://fcskc-website.test
locale: en
debug: true
cms:
theme: fcskc-website
edgeUpdates: false
disableCoreUpdates: false
enableSafeMode: false
@artistro08
artistro08 / swiper.md
Created May 16, 2020 19:30
Really cool responsive slider Swiper.js
@artistro08
artistro08 / gist:b7677551c54fe60e2f80f9f21ee72063
Created May 7, 2020 22:44
Automatic Deployment using Github Actions & appleboy/ssh
name: Deploy Develop
on:
push:
branches:
- develop
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
@artistro08
artistro08 / md5.php
Last active April 28, 2020 19:49
Add MD5 PHP function to OctoberCMS without a Plugin
// Put this in your code section in your layout
function onstart() {
$this['url_hasher'] = new class {
public function run($input) {
return md5($input);
}
};
}