This tutorial explains how to deploy automatically from bitbucket (or github) to AWS S3.
- Go to Create Application
- Select use bitbucket (or github)
- Choose your repo
- For the next questions, choose the default answers
| <?php | |
| add_action( 'wp_head', 'mxms_google_analytics' ); | |
| function mxms_google_analytics() { | |
| ?><script> | |
| (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
| (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
| m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
| })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | |
| ga('create', 'UA-0000000-0', 'auto'); | |
| ga('send', 'pageview'); |
| function retrievePagesSequentially() { | |
| var index = 1; | |
| function request() { | |
| return window.axios.get(`/api/cache/${index}`).then((response) => { | |
| let dataSet = response.data.length; | |
| jQuery('#headerTop').text(`${((index - 1) * 250) + dataSet} Orders`); | |
| ShopifyApp.flashNotice(`Page ${index} retrieved...`); | |
| index++; | |
| if (dataSet < 250) { | |
| setTimeout(() => { |
| <ion-select [(ngModel)]="state"> | |
| <ion-option value="ACT">Australian Capital Territory</ion-option> | |
| <ion-option value="NSW">New South Wales</ion-option> | |
| <ion-option value="NT ">Northern Territory</ion-option> | |
| <ion-option value="QLD">Queensland</ion-option> | |
| <ion-option value="SA ">South Australia</ion-option> | |
| <ion-option value="TAS">Tasmania</ion-option> | |
| <ion-option value="VIC">Victoria</ion-option> | |
| <ion-option value="WA ">Western Australia</ion-option> | |
| </ion-select> |