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> | |
| <v-row justify="center" align="center"> | |
| <v-card> | |
| <v-card-text> | |
| <v-row :class="['my-3','mx-3','text-h4']">LOGIN USING YOUR GITHUB ACCOUNT</v-row> | |
| <v-row align="center" justify="center"> | |
| <v-btn><v-icon class="mx-2 my-2">fab fa-github</v-icon>LOGIN</v-btn> | |
| </v-row> | |
| </v-card-text> |
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
| vuetify: { | |
| defaultAssets: {icons: 'fa'}, |
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
| yarn add -D @fortawesome/fontawesome-free |
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> | |
| <Login /> | |
| </template> | |
| <script lang="ts"> | |
| import Login from '@/components/Login.vue' | |
| import { Component, Vue } from 'nuxt-property-decorator' | |
| @Component({ | |
| components: { | |
| Login, | |
| }, |
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
| yarn generate | |
| cd dist | |
| rclone copy ./ <remote name>:<bucket 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
| <template> | |
| <v-app > | |
| <nuxt/> | |
| </v-app> | |
| </template> |
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> | |
| <Home /> | |
| </template> | |
| <script lang="ts"> | |
| import Home from '@/components/Home.vue' | |
| import { Component, Vue } from 'nuxt-property-decorator' | |
| @Component({ | |
| components: { | |
| Home, | |
| }, |
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="['mx-5', 'my-5']"> | |
| <v-row justify="center"> | |
| <div | |
| :class="[`text-h1`, 'text-center']" | |
| v-text="'Open Source Private Marketplace'" | |
| ></div> | |
| </v-row> | |
| <v-row justify="center"> | |
| <div |
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
| yarn add nuxt-property-decorator |
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
| ? Project name: frontend | |
| ? Programming language: TypeScript | |
| ? Package manager: Yarn | |
| ? UI framework: Vuetify.js | |
| ? Nuxt.js modules: Axios | |
| ? Linting tools: ESLint, Prettier | |
| ? Testing framework: Jest | |
| ? Rendering mode: Universal (SSR / SSG) | |
| ? Deployment target: Static (Static/JAMStack hosting) | |
| ? Development tools: (Press <space> to select, <a> to toggle all, <i> to invert selection) |