From 3a070ca2a63491b4d714643ae550b09773660c1e Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Thu, 10 Sep 2020 19:01:13 +0200 Subject: [PATCH] Move all the backend code to a 'backend' directory. --- README.md | 4 ++-- Cargo.lock => backend/Cargo.lock | 0 Cargo.toml => backend/Cargo.toml | 0 conf.ron => backend/conf.ron | 0 decrypt_message.ps1 => backend/decrypt_message.ps1 | 0 encrypt_message.ps1 => backend/encrypt_message.ps1 | 0 launch_debug.ps1 => backend/launch_debug.ps1 | 0 {src => backend/src}/consts.rs | 0 {src => backend/src}/crypto.rs | 0 {src => backend/src}/main.rs | 0 .../static}/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2 | Bin {static => backend/static}/lobster-two-font.css | 0 {static => backend/static}/style.css | 0 {templates => backend/templates}/main.html | 0 14 files changed, 2 insertions(+), 2 deletions(-) rename Cargo.lock => backend/Cargo.lock (100%) rename Cargo.toml => backend/Cargo.toml (100%) rename conf.ron => backend/conf.ron (100%) rename decrypt_message.ps1 => backend/decrypt_message.ps1 (100%) rename encrypt_message.ps1 => backend/encrypt_message.ps1 (100%) rename launch_debug.ps1 => backend/launch_debug.ps1 (100%) rename {src => backend/src}/consts.rs (100%) rename {src => backend/src}/crypto.rs (100%) rename {src => backend/src}/main.rs (100%) rename {static => backend/static}/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2 (100%) rename {static => backend/static}/lobster-two-font.css (100%) rename {static => backend/static}/style.css (100%) rename {templates => backend/templates}/main.html (100%) diff --git a/README.md b/README.md index c50b374..6802a75 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -== How to setup openssl on windows +## How to setup openssl on windows * Install vcpkg * PS> git clone https://github.com/Microsoft/vcpkg.git @@ -13,6 +13,6 @@ * \installed\x64-windows\bin -== Autoreload +## Autoreload https://actix.rs/docs/autoreload/ \ No newline at end of file diff --git a/Cargo.lock b/backend/Cargo.lock similarity index 100% rename from Cargo.lock rename to backend/Cargo.lock diff --git a/Cargo.toml b/backend/Cargo.toml similarity index 100% rename from Cargo.toml rename to backend/Cargo.toml diff --git a/conf.ron b/backend/conf.ron similarity index 100% rename from conf.ron rename to backend/conf.ron diff --git a/decrypt_message.ps1 b/backend/decrypt_message.ps1 similarity index 100% rename from decrypt_message.ps1 rename to backend/decrypt_message.ps1 diff --git a/encrypt_message.ps1 b/backend/encrypt_message.ps1 similarity index 100% rename from encrypt_message.ps1 rename to backend/encrypt_message.ps1 diff --git a/launch_debug.ps1 b/backend/launch_debug.ps1 similarity index 100% rename from launch_debug.ps1 rename to backend/launch_debug.ps1 diff --git a/src/consts.rs b/backend/src/consts.rs similarity index 100% rename from src/consts.rs rename to backend/src/consts.rs diff --git a/src/crypto.rs b/backend/src/crypto.rs similarity index 100% rename from src/crypto.rs rename to backend/src/crypto.rs diff --git a/src/main.rs b/backend/src/main.rs similarity index 100% rename from src/main.rs rename to backend/src/main.rs diff --git a/static/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2 b/backend/static/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2 similarity index 100% rename from static/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2 rename to backend/static/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2 diff --git a/static/lobster-two-font.css b/backend/static/lobster-two-font.css similarity index 100% rename from static/lobster-two-font.css rename to backend/static/lobster-two-font.css diff --git a/static/style.css b/backend/static/style.css similarity index 100% rename from static/style.css rename to backend/static/style.css diff --git a/templates/main.html b/backend/templates/main.html similarity index 100% rename from templates/main.html rename to backend/templates/main.html -- 2.43.0