Netlify Gatsby 46.8mlardinoistechcrunch

From
Google Cloud Developer Blogs
on Google App Engine
Google Cloud Developer Blogs – Tutorials

What is a Blog? What are the general requirements of a Blog? To build a blog, we need the following:

1) A build process
2) Basic content that will always stay in sync across content owners or editors.
3) A database
4) For administrative purposes, an additional public URL that can be used to manage the end site for other authors or sites.
3. A Blogger Shell (BOBS)

The core modules of the blog are the BOBS, a shell, and the runtime that run the code.

The blog is architected using Node.js with a Postgres & Redis instance hosting a SQL database.

The Blogger shell is a helper application that lets you edit your posts. It looks like this:

The shell works like this:

1) Run a Postgres + Redis instance with
postgresql-createdb package. You get it from the repository, the docker hub, or you can just pull from the internet
2) Create the SQL database

The first step is creating the database:

postgres=> create database blog_staging1; + CREATE DATABASE blog_staging1; CREATE EXTENSION postgis USING postgres;
To run the application, run
docker run --rm -p 1234:1234 -v /run/blog_staging1:/var/www blog_staging1:54773
Once it is running, you will notice that the application is now accessible via localhost:54773.

To show, edit, or delete the content, you can use one of these methods:

POST / HTTP/1.1 Host: [::1] Content-Type: application/x-www-form-urlencoded Content-Length: 8898

POST / HTTP/1.1 Host: localhost:54773. I set this up before because I wanted to give this a home. Enter your email if you want to have email notifications.

POST / HTTP/1.