Last active
April 18, 2018 01:36
-
-
Save jongacnik/dd47c5c9a0f56a7105681cec1df5c4cb to your computer and use it in GitHub Desktop.
bam-kirby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kirby install --kit=plainkit public \ | |
&& cd public \ | |
&& kirby plugin:install jongacnik/kirby-index-field \ | |
&& kirby plugin:install jongacnik/kirby-hidebar-field \ | |
&& kirby plugin:install jongacnik/kirby-image-api \ | |
&& kirby plugin:install jongacnik/kirby-opengraph \ | |
&& kirby plugin:install jongacnik/kirby-favicon \ | |
&& kirby plugin:install jongacnik/kirby-pagetitle \ | |
&& kirby plugin:install jongacnik/kirby-busted \ | |
&& kirby plugin:install jbeyerstedt/kirby-plugin-kirbytextRaw \ | |
&& kirby plugin:install distantnative/field-multiselect \ | |
&& kirby plugin:install medienbaecker/kirby-quickselect \ | |
&& mkdir -p site/blueprints/fields \ | |
&& echo -e "type: group\nfields:\n title:\n label: Title\n type: text\n readonly: true\n pageindex:\n label: Items\n type: index\n options: children\n hidebar: \n type: hidebar\n unstick: true" | tee site/blueprints/fields/collection.yml \ | |
&& echo -e "type: group\nfields:\n createddate:\n label: Created\n type: datetime\n default: now\n time:\n interval: 1" | tee site/blueprints/fields/meta.yml \ | |
&& cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment