Coder Social home page Coder Social logo

hasura-kinto's Introduction

KintoHub Hasura Example

Overview

Hasura is a graphql engine which makes it easy to create CRUD graphql on top of postgres aside from stitching together APIs providing and eventing queue!

About KintoHub:

KintoHub aligns teams to ship & operate cloud native apps with ease. Learn More

Deployment

  1. Apply this template to your Github
  2. Create a Website Block on KintoHub:
  3. Set the name of your block
  4. Select Dynamic Web App
  5. For language select Custom Dockerfile
  6. Set the port to 8080
  7. Hit the Create button
  8. You're now good to build! Click Build Latest Commit. Once complete, Click Now click Add To Project and Create a new Project.
  9. Scroll to "KintoBlocks" section and in the Search Box type "Postgres" and select it to add a Postgres Database.
  10. Click Create New Project at bottom right

The deployment can take up to 3 minutes. Once successful, click Open URL on the Hasura Block under "KintoBlocks" section.

Installation & Local Run

Run docker-compose up -d

Usage

Click "Open URL" and start playing with hasura. We recommend using the advance migration functionality for multiple environments such as dev and staging.

What's Next?

Hasura Pro Tips && Operations!

Hasura console records every schema changes and generate the migration queries as file. In this project,we have set it up to automatically update your database when being deployed on KintoHub and be able to easily run it locally on your machine to test. Migrations are branch friendly :)

You have the following files:

  • config.yaml to configure your hasura cli tools
  • docker-compose used to configure local postgres database and hasura instance for local testing and creating migrations.
  • Dockerfile is used to build and deploy your migrations onto Kintohub.
  • migrations folder has all changesets / migrations in it currently empty by default.

Before everything else

Install hasura cli tools here

To start a local server use docker-compose up -d

NOTE: If you changed your port in the docker-compose file, make sure to update/syc the config.yaml entrypoint.

Generate Migration Files

  1. Run hasura console at project root
  2. Files are generated with timestamp under ./migrations
  3. Commit the files with git

Generate Data Migration Files

  1. hasura migrate create [name_of_migration]
  2. Paste the sql to .up.yaml
  3. Make sure you append the "ON_CONFLICT" to the query. Otherwise you may need to handle the rollback situation manually (by generate delete queries)
  4. Commit your files

Force run the hasura schema updates

  1. Run hasura migrate apply

Creating and testing migrations

  1. Run hasura migrate status to check your migration status
  2. Use the hasura console to perform schema changes
  3. Before commit the schema, ensure the schema is working by rolling back it and run again
    1. Run hasura migrate apply --down 1 to take down the last migration (or --down n if you have more than 1)
    2. Check the schema, it should be back to the original state
    3. If there is any errors, please check the *.down.yaml to fix the issues
    4. Run hasura migrate apply again
  4. Commit the files

Remove migrations

  1. Run hasura migrate status to check your migration status
  2. Run hasura migrate apply --version 1550925483858 --type down
    1. where the version is the timestamp of the migration you wish to revert to
  3. Delete your migration files that you want to remove.
  4. Run hasura migrate apply again

Setup the database from scratch

In case you need to setup the database from scratch:

  1. Ensure you have a super admin account or check to ensure you have these permissions setup
  2. Install the hasura cli tools
  3. Configure the config.yaml
  4. Ensure hasura working properly by running hasura console
  5. Run hasura migrate apply to run the migration

hasura-kinto's People

Contributors

jasoncarreira avatar

Watchers

James Cloos avatar  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.