Git Product home page Git Product logo

pg-llama-demo's Introduction

Llama Farm As A Service

This repo contains the contents of a live coding demo presented at the 26 Feb 2020 Helsinki PostgreSQL Meetup, "Live-coding a server from scratch with Postgraphile". It sets up a server providing a GraphQL API for a llama farm, based on a containerised a PostgreSQL database and Postgraphile instance.

By the end, read access is public, while modifications to llamas are allowed if the user is the llama's herder. Authentication is based on JWT tokens.

To run the final demo, you'll need Docker Compose:

docker-compose up --build

Then open the page http://localhost:5000/graphiql in a browser.

To clear out the container volumes between configuration changes:

docker-compose down

To create a JWT token that'll encode the user id, do something like this:

npm install --no-save jsonwebtoken
node
const jwt = require('jsonwebtoken')
const token = jwt.sign({ aud: 'postgraphile', id: 3 }, 'llama') // shared secret

And then include a header Authorization: Bearer ${token} in your HTTP requests.

pg-llama-demo's People

Contributors

eemeli avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.