Skip to content

Instantly share code, notes, and snippets.

View brygrill's full-sized avatar

Bryan Grill brygrill

View GitHub Profile
@brygrill
brygrill / firebase-graphql-with-data.js
Last active March 3, 2021 23:00
Deploying a GraphQL Server with Firebase Functions
// sample graphql server deployed with firebase functions
// pulling some basic stockmarket data from a firebase db
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const express = require('express');
const graphqlHTTP = require('express-graphql');
const values = require('lodash.values');
const { GraphQLSchema, GraphQLObjectType, GraphQLList, GraphQLString } = require('graphql');
// Init express
@brygrill
brygrill / firebase-graphql-basic.js
Last active August 4, 2020 14:12
Deploying a GraphQL Server with Firebase Functions
// sample graphql server deployed with firebase functions
// minimal server setup
// via http://graphql.org/graphql-js/running-an-express-graphql-server/
const functions = require('firebase-functions');
const express = require('express');
const graphqlHTTP = require('express-graphql');
const { buildSchema } = require('graphql');
// Init express
const app = express();
Update Packages
$ sudo apt-get update
$ sudo apt-get -y upgrade
$ sudo apt-get dist-upgrade

via askubuntu

Install .deb
# checkout remote branch
$ git fetch
$ git checkout <remote-branch-name>

# list local branches
$ git branch

# list all branches
$ git branch -a