This commit is contained in:
Liyas Thomas
2020-11-03 13:48:18 +05:30
12 changed files with 876 additions and 2329 deletions

View File

@@ -1,14 +1,5 @@
{
"projects": {
"default": "postwoman-api"
},
"targets": {
"postwoman-api": {
"hosting": {
"postwoman": [
"postwoman"
]
}
}
}
}

View File

@@ -1,6 +1,4 @@
<div align="center">
<h4><a href="https://github.com/hoppscotch/hoppscotch/issues/1190">Kick off Hacktoberfest 👩‍💻👨‍💻👌 with the next best thing DEVs will ❤️</a></h4>
<br>
<a href="https://hoppscotch.io"><img src="https://raw.githubusercontent.com/hoppscotch/hoppscotch/master/static/logo.png" alt="hoppscotch.io logo" height="128"></a>
<br>
<br>
@@ -120,7 +118,7 @@ _Customized themes are synced with local session storage_
**Features**
- Copy/share public "Share URL"
- Generate/copy request code for `JavaScript XHR`, `Fetch` and `cURL`
- Generate/copy request code snippets for 10+ languages and frameworks
- Import `cURL`
- Label requests

View File

@@ -1,6 +0,0 @@
{
"rules": {
".read": false,
".write": false
}
}

View File

@@ -1,18 +1,6 @@
{
"database": {
"rules": "database.rules.json"
},
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"hosting": {
"target": "postwoman",
"public": "dist",
"cleanUrls": true,
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
},
"storage": {
"rules": "storage.rules"
}
}

View File

@@ -1,26 +1,4 @@
{
// Example:
//
// "indexes": [
// {
// "collectionGroup": "widgets",
// "queryScope": "COLLECTION",
// "fields": [
// { "fieldPath": "foo", "arrayConfig": "CONTAINS" },
// { "fieldPath": "bar", "mode": "DESCENDING" }
// ]
// },
//
// "fieldOverrides": [
// {
// "collectionGroup": "widgets",
// "fieldPath": "baz",
// "indexes": [
// { "order": "ASCENDING", "queryScope": "COLLECTION" }
// ]
// },
// ]
// ]
"indexes": [],
"fieldOverrides": []
}

View File

@@ -1 +0,0 @@
node_modules/

View File

@@ -1,8 +0,0 @@
// const functions = require('firebase-functions');
// // Create and Deploy Your First Cloud Functions
// // https://firebase.google.com/docs/functions/write-firebase-functions
//
// exports.helloWorld = functions.https.onRequest((request, response) => {
// response.send("Hello from Firebase!");
// });

File diff suppressed because it is too large Load Diff

View File

@@ -1,22 +0,0 @@
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"serve": "firebase serve --only functions",
"shell": "firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "8"
},
"dependencies": {
"firebase-admin": "^9.2.0",
"firebase-functions": "^3.11.0"
},
"devDependencies": {
"firebase-functions-test": "^0.2.2"
},
"private": true
}

1178
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -58,17 +58,17 @@
"@testing-library/jest-dom": "^5.11.5",
"@vue/test-utils": "^1.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.1",
"babel-jest": "^26.6.2",
"eslint": "^7.12.1",
"eslint-plugin-vue": "^7.1.0",
"firebase-mock": "^2.3.2",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest": "^26.6.2",
"jest-serializer-vue": "^2.0.2",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"sass": "^1.28.0",
"sass-loader": "^10.0.4",
"sass-loader": "^10.0.5",
"vue-jest": "^3.0.7"
},
"jest": {

View File

@@ -1,7 +0,0 @@
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth!=null;
}
}
}