From the course: Google Cloud Professional Cloud Architect Cert Prep: 5 Managing Implementation

Unlock this course with a free trial

Join today to access over 24,800 courses taught by industry experts.

Deploying Rust applications to App Engine: A step-by-step guide

Deploying Rust applications to App Engine: A step-by-step guide - Google Cloud Tutorial

From the course: Google Cloud Professional Cloud Architect Cert Prep: 5 Managing Implementation

Deploying Rust applications to App Engine: A step-by-step guide

Here we have an App Engine environment and I've configured it so that it is going to tell me about how to run other environments. So this flexible environment, what I'm going to do here is actually use the rust language to deploy a microservice with this particular App Engine framework. So what do we do? First up, I'm going to go ahead and make a directory called Web Docker and I'm going to CD into it. Next up, I'm going to need to create that particular config file for App Engine. So let's go ahead and do that. I'm going to go ahead and touch a file called App.yaml. And this App.yaml is important because this is how we tell App Engine what it is we're doing. So we're going to say runtime and we're going to say custom and then we're going to say env and we're going to say flex. And that's really all we need to do other than creating the files for a Rust project. So in order to do that, what I'll do is I'll type in cargo init. And then for name, I'm going to go ahead and call this…

Contents