RocketsGraphQL Rgraph Versions Save

Backend with superpowers. Supercharge your web applications with Authentication, Database, GraphQL and serverless functions right from day zero.

v0.3-dev

8 months ago

๐Ÿ“ข Whatโ€™s new?

This is the first dev release of Rocketgraph. We introduce Postgres logging:

  • ๐Ÿฆพ pgAudit installed by default on every Project instance
  • โ›ˆ๏ธ Run complex queries, set a timeframe and generate logs that match them
  • ๐Ÿช„ Select from a range of query templates to automatically generate log queries for you
  • ๐Ÿ‘จโ€๐Ÿ’ป Use our code editor and Cloudwatch logs syntax to easily generate your Postgres logs.
  • โšกA demo for Postgres logger configured on my own Rocketgraph instance for demonstration.

๐Ÿ’ป Brand new Dashboard for Logging

Checkout the demo here: https://rocketgraph.io/logger-demo

Kapture 2023-08-16 at 13 58 23

You can select from a range of Query templates. For example query all the DROP commands in last 5 minutes:

Kapture 2023-08-16 at 14 31 10

๐Ÿ’ป Usage

To use it, you'll need to enable to extension.

Login to your RDS Postgres using psql like so:

psql postgresql://postgres:[email protected]:5432/postgres

Provided in your Rocketgraph dashboard

Then do:

CREATE EXTENSION pgAudit;

v0.3.0

8 months ago

๐ŸŽ New Features

This is the v0.3.0 release of Rocketgraph. We introduce Postgres logging:

  • ๐Ÿฆพ pgAudit installed by default on every Project instance
  • โ›ˆ๏ธ Run complex queries, set a timeframe and generate logs that match them
  • ๐Ÿช„ Select from a range of query templates to automatically generate log queries for you
  • ๐Ÿ‘จโ€๐Ÿ’ป Use our code editor and Cloudwatch logs syntax to easily generate your Postgres logs.
  • โšกA demo for Postgres logger configured on my own Rocketgraph instance for demonstration.
  • ๐Ÿค“ Blogs and demo videos to get you started
  • ๐Ÿ•ต๏ธ Support for private repos for serverless functions
  • ๐Ÿงจ Support for deploying lambda functions from local

๐Ÿ˜Ž Brand new Dashboard for Logging

Checkout the demo here: https://rocketgraph.io/logger-demo

Kapture 2023-08-16 at 13 58 23

You can select from a range of Query templates. For example query all the DROP commands in last 5 minutes:

Area

๐Ÿค– Usage

To use it, you'll need to enable to extension.

Login to your RDS Postgres using psql like so:

psql postgresql://postgres:[email protected]:5432/postgres

Provided in your Rocketgraph dashboard

Create a role:

CREATE ROLE rds_pgaudit; 

Then set log level:

ALTER DATABASE postgres set pgaudit.log="ALL"; 

And enable extension:

CREATE EXTENSION pgAudit;

Sleek look for serverless dashboard

new_serverless_look

๐ŸŽƒ Resources

๐Ÿค–Improvements

v0.2-stable

9 months ago

๐Ÿ“ข Whatโ€™s new?

This is the first stable release of Rocketgraph. It comes with the following features:

  • ๐Ÿ”’ Authentication using email/password
  • ๐Ÿ‘ฌ Authentication using social logins
  • ๐Ÿช„ Authentication using OTP and magic link
  • โ›ˆ๏ธ Server-less functions: Bring your own code and run it as thin AWS lambdas.
  • ๐Ÿ‘จโ€๐Ÿ’ป Your code will be automatically picked up from your Github commits by our Github bot and deployed as Lambdas
  • ๐Ÿฆพ AWS RDS support

๐Ÿ’ป Brand new Dashboard look

Kapture 2023-08-02 at 13 30 38

  • โŒ› Progress dashboard page that shows the booting stage of the project. While you can browse through an array of resources to get started
  • ๐ŸŽฎ Hasura Console with randomly generated password to increase security.
  • ๐Ÿ—„๏ธ Postgres Database with randomly generated password. You can psql into your db.
  • ๐Ÿคฉ AWS RDS support with 20GB Postgres data
  • โšก Serverless dashboard. Shows all the commits of the repository that you have given access to.
  • โš™๏ธ Settings dashboard. You can integrate social logins, OTP and magic link logins here.

๐ŸŽ‰ Hasura batteries

๐ŸŒฎ Rocketgraph JS SDKs and react-apollo

๐Ÿ” Other minor improvements