Skip to content

Instantly share code, notes, and snippets.

View kingRayhan's full-sized avatar
😍
in relationship with console.log( )

Md Raihan kingRayhan

😍
in relationship with console.log( )
View GitHub Profile
@kingRayhan
kingRayhan / MailHog configuration
Created June 7, 2022 08:12 — forked from Propaganistas/MailHog configuration
Laravel MailHog SMTP configuration
# Mailhog
MAIL_MAILER=smtp
MAIL_HOST=0.0.0.0
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
@kingRayhan
kingRayhan / firestore-guide.js
Created June 15, 2021 16:53 — forked from vinnihoke/firestore-guide.js
Firestore CRUD Cheat Sheet
// 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,
})