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
| # IMPORTANT! USE AT YOUR OWN RISK. THIS IS JUST AN EXPERIMENT. | |
| # | |
| # IF YOU ENCOUNTER PROBLEMS, YOU SHOULD BYPASS THIS REVERSE PROXY AND CONNECT DIRECTLY TO api.pulumi.com | |
| # BY RUNNING `pulumi login https://api.pulumi.com`. THIS DOES MEAN YOU'LL ONLY BE ABLE TO LOGIN TO A SINGLE | |
| # PULUMI CLOUD ACCOUNT AGAIN. | |
| # 1. Use https://mkcert.dev to create a self-signed cert for all the aliases | |
| # you want to use using the `mkcert` tool. | |
| # For example, if your Pulumi Cloud usernames are abc, def and xyz | |
| # AND assuming that you want to stick to the virtual server name |
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
| Param( | |
| [string]$storageAccountName = "the_default_storage_account_name", | |
| [string]$containerName = "the_default_container_name", | |
| [string]$resourceGroupName = "your_default_resource_group_name", | |
| [int] $maxAge = 86400, | |
| [int] $indexMaxAge = 3600, | |
| [boolean]$isProductionBuild = $false, | |
| [boolean]$skipBuild = $false, | |
| [boolean]$isAzurePipelineBuild = $false, | |
| [string]$localFolder = ".\dist" |
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
| <script> | |
| import axios from 'axios'; | |
| import VueMarkdown from 'vue-markdown'; | |
| import Card from './material-components/Card'; | |
| import ScrollDownToSection from './ScrollDownToSection'; | |
| import Timeline from './Timeline'; | |
| import SimpleModal from './dialogs/SimpleModal'; | |
| const contentRepositoryApiBaseUrl = process.env.CONTENT_REPOSITORY_API_BASE_URL; |
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
| <template> | |
| <section class="projects"> | |
| <div class="content"> | |
| <div class="mdl-typography--text-center section-title"> | |
| <h4>Projects</h4> | |
| </div> | |
| <div class="cards-wrapper"> | |
| <div class="cards-container"> | |
| <card v-for="(project, index) in projects" :key="index"> | |
| <div slot="title"> |
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
| <template> | |
| <div id="app"> | |
| <img src="./assets/logo.png"> | |
| <div v-show="showMessage">{{message}}</div> | |
| <div v-show="items.length > 0">I like</div> | |
| <ul> | |
| <li v-for="(item, index) in items" v-bind:key="index">{{item}}</li> | |
| </ul> | |
| <router-view/> | |
| <!--This is what we declared as the tag for our custom component--> |
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
| import Vue from 'vue'; | |
| import Router from 'vue-router'; | |
| import HelloWorld from '@/components/HelloWorld'; | |
| Vue.use(Router); | |
| export default new Router({ | |
| routes: [ | |
| { | |
| // this component is loaded when the site is loaded first. '/' represents the root-URL |
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
| <template> | |
| <div>Test</div> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'TestComponent', | |
| }; | |
| </script> | |
| <style> | |
| </style> |
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
| <template> | |
| <div class="hello"> | |
| <h1>{{ msg }}</h1> | |
| <h2>Essential Links</h2> | |
| <ul> | |
| <li> | |
| <a | |
| href="https://vuejs.org" | |
| target="_blank" | |
| > |
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
| import Vue from 'vue'; | |
| import Router from 'vue-router'; | |
| import HelloWorld from '@/components/HelloWorld'; | |
| import TestComponent from '@/components/TestComponent'; | |
| Vue.use(Router); | |
| export default new Router({ | |
| routes: [ | |
| { |
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
| <template> | |
| <div id="app"> | |
| <img src="./assets/logo.png"> | |
| <div v-show="showMessage">{{message}}</div> | |
| <div v-show="items.length > 0">I like</div> | |
| <ul> | |
| <li v-for="(item, index) in items" v-bind:key="index">{{item}}</li> | |
| </ul> | |
| <router-view/> | |
| </div> |
NewerOlder