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
// ./server/NuxtServer.ts | |
import express from 'express' | |
import consola from 'consola' | |
import { Nuxt, Builder } from 'nuxt-edge' | |
import config from '../nuxt.config' | |
import { PORT } from './' | |
export class NuxtServer { |
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 | |
remote=origin ; for brname in `git branch -r | grep $remote | grep -v master | grep -v HEAD | awk '{gsub(/^[^\/]+\//,"",$1); print $1}'`; do git branch --track $brname $remote/$brname || true; done 2>/dev/null |
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> | |
<v-card | |
v-for="category in categories" | |
:key="category.idCategory" | |
class="mx auto" | |
max-width="344" | |
> | |
<v-img class="white--text align-end" :src="category.strCategoryThumb"> | |
<v-card-title>{{ category.strCategory }}</v-card-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
/** | |
* Schema for validating JSDoc doclets. | |
* @module jsdoc/schema | |
* @see <https://trac.tools.ietf.org/html/draft-wright-json-schema-validation-01> | |
*/ | |
// JSON schema types | |
const ARRAY = 'array'; | |
const BOOLEAN = 'boolean'; | |
const NULL = 'null'; | |
const NUMBER = 'number'; |
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-container fluid id="fileUpload"> | |
<v-layout> | |
<v-flex sm12 class="text-xs-center"> | |
<v-btn | |
small | |
color="blue" | |
label="Select Files" | |
@click="pickFiles" | |
prepend-icon="attach_file" |