From 48a0c0f007bff5df95c69b727e3ee0e6c3b9bfeb Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 11 Sep 2024 17:06:32 +0200 Subject: doc: Show readme.md in main.rs file --- README.md | 12 ++++++------ src/main.rs | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1e8ce22..ea71497 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ After that you must copy the `schema/init.sql` file into the database. Now just run the app -``` +```text cargo run ``` @@ -44,19 +44,19 @@ pushes the latest release version to a [GHCR.io package](https://github.com/cas- A new version is released using -``` +```text ./scripts/release X.Y.Z ``` Now you just exec -``` +```text docker pull ghcr.io/cas-4/backend:latest ``` Or you can build a new image -``` +```text docker build -t cas:latest . docker run \ -e RUST_LOG=... \ @@ -69,7 +69,7 @@ docker run \ Or the Docker compose which puts up also the PostgreSQL locally. -``` +```text docker compose up ``` @@ -78,7 +78,7 @@ docker compose up If you do not want to use Docker or Docker compose directly, you can use a Kubernetes cluster like [MiniKube](https://minikube.sigs.k8s.io/docs/). -``` +```text ./scripts/k8s (apply|delete) ``` diff --git a/src/main.rs b/src/main.rs index 6988711..33718c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,4 @@ +#![doc = include_str!("../README.md")] mod config; mod db; mod errors; -- cgit v1.2.3-18-g5258