Skip to content

Instantly share code, notes, and snippets.

View noobling's full-sized avatar
🏠
Working from home

David Yu noobling

🏠
Working from home
View GitHub Profile
const uploadFiles = async () => {
setUploading(true);
const promises = filesToUpload
.map(async (file) => {
const { data } = await getSignedUrlForProject({
variables: {
projectId: projectId,
fileName: file.name,
},
});
@noobling
noobling / laravelquickstart.md
Last active August 1, 2018 05:49
Laravel nuxt app quick start

laravel new appname

mysql -u root -p

CREATE DATABASE DBNAMEHERE

npx create-nuxt-app