here's the link to a tutorial. https://youtu.be/kX6MLRc_Qmg
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
| {% if __SELF__.menuItems %} | |
| <div class="collapse navbar-collapse" id="navcol-1"> | |
| <ul class="nav navbar-nav ml-auto"> | |
| {% partial __SELF__ ~ "::items" items=__SELF__.menuItems %} | |
| </ul> | |
| </div> | |
| {% endif %} |
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
| app: | |
| url: http://example.test | |
| locale: en | |
| debug: true | |
| cms: | |
| theme: theme-name #no Spaces. dashes only | |
| edgeUpdates: false | |
| disableCoreUpdates: false | |
| enableSafeMode: false |
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
| #!/bin/bash | |
| inotifywait -m ~/.sites -e create -e moved_to | | |
| while read dir action file; do | |
| export file | |
| echo "The file '$file' appeared in directory '$dir' via '$action'" | |
| echo -e "\n127.0.0.1 $file.test\c" | powershell.exe gsudo wsl tee -a /mnt/c/Windows/System32/drivers/etc/hosts | |
| done |
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
| {"lastUpload":"2020-06-12T12:51:51.480Z","extensionVersion":"v3.4.3"} |
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
| app: | |
| url: https://fcskc-website.test | |
| locale: en | |
| debug: true | |
| cms: | |
| theme: fcskc-website | |
| edgeUpdates: false | |
| disableCoreUpdates: false | |
| enableSafeMode: false |
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
| name: Deploy Develop | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: |
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
| // Put this in your code section in your layout | |
| function onstart() { | |
| $this['url_hasher'] = new class { | |
| public function run($input) { | |
| return md5($input); | |
| } | |
| }; | |
| } |
NewerOlder