Skip to content

Commit

Permalink
Dev (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
lexara-prime-ai committed Aug 17, 2024
2 parents 7b6b26e + 9bcc602 commit 8ea96c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions render_cdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
//! ### 1. Querying for deployed services
//! Retrieve deployed services using different filters like status, region, environment, or by name.
//!
//! ```
//! ```ignore
//! use render_cdk::resource_management::services::service_manager::ServiceManager;
//! use tokio::main;
//!
Expand All @@ -72,7 +72,7 @@
//! ### 2. Deleting a service
//! Delete a specific service, such as a web service or static site.
//!
//! ```
//! ```ignore
//! use render_cdk::resource_management::services::service_manager::ServiceManager;
//! use tokio::main;
//!
Expand All @@ -89,7 +89,7 @@
//! ### 3. Working with Postgres databases
//! Manage Postgres databases within your Render account, listing, searching, or filtering by status.
//!
//! ```
//! ```ignore
//! use render_cdk::resource_management::services::service_manager::ServiceManager;
//! use tokio::main;
//!
Expand All @@ -109,7 +109,7 @@
//! ### 4. Deploying a static site
//! This example demonstrates how to deploy a simple static site using Render.
//!
//! ```
//! ```ignore
//! use render_cdk::resource_management::templates::{Template, ServiceDetails};
//!
//! let static_site = Template {
Expand All @@ -133,7 +133,7 @@
//! ### 5. Deploying a web service (Node.js)
//! This example demonstrates deploying a web service, specifically a Node.js application.
//!
//! ```
//! ```ignore
//! use render_cdk::resource_management::templates::{Template, ServiceDetails, EnvSpecificDetails};
//!
//! let web_service = Template {
Expand Down Expand Up @@ -165,7 +165,7 @@
//! You can use `.conf` files to provision resources on Render. The following example shows
//! how to load and deploy an existing configuration file.
//!
//! ```
//! ```ignore
//! use render_cdk::iaas::config::Conf;
//! use tokio::main;
//!
Expand Down Expand Up @@ -221,7 +221,7 @@
//! ## 8. Deploying the configuration.
//! The above configuration can be deployed by running the following code snippet.
//!
//! ```
//! ```ignore
//! use render_cdk::iaas::config::Conf;
//! use tokio::main;
//!
Expand Down
2 changes: 1 addition & 1 deletion render_cdk/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async fn main() {
* THE FOLLOWING EXAMPLE DEPLOYS A SIMPLE [WEB] SERVICE(NodeJs).
> REPO_URL - https://github.com/lexara-prime-ai/SAMPLE_WEB_SERVICE
*/
*/

let web_service = Template {
type_: "web_service".to_owned(),
Expand Down

0 comments on commit 8ea96c0

Please sign in to comment.