All raw components markup of laranuxt ninja project
This file contains 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> | |
<form | |
class=" flex justify-items-end flex-col items-end p-2 border-gray-600 border mb-3" | |
> | |
<div class="flex"> | |
<input | |
type="text" | |
placeholder="Email" | |
class=" border-gray-600 border px-3 py-1 w-1/2 mr-3 focus:outline-none focus:border-primaryDark" | |
v-model="form.email" |
This file contains 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
package com.company; | |
public interface Discountable { | |
public double discountedPrice(double price); | |
} |
This file contains 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
// Setup Firestore. Note that all of these will be asyncronous tasks and can have a .then attached. Write in a config process for Firebase. Include the necessary process.env files and instructions how to make a .env file. | |
*************************************************************** | |
// Add data - C | |
firestore.collection("CollectionName").add({ | |
key: value, | |
key: value, | |
}) |
This file contains 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
.\? { | |
position: relative; | |
} | |
.\?::before { | |
content: ""; | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
top: 0; |
This file contains 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
const countries = [ | |
{ | |
value: "Afghanistan", | |
label: "Afghanistan", | |
}, | |
{ | |
value: "Albania", | |
label: "Albania", | |
}, | |
{ |
This file contains 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
# Mailhog | |
MAIL_MAILER=smtp | |
MAIL_HOST=0.0.0.0 | |
MAIL_PORT=1025 | |
MAIL_USERNAME=null | |
MAIL_PASSWORD=null | |
MAIL_ENCRYPTION=null |
OlderNewer