From ec7202e36d1a700e37310253a4cf648925b1c44c Mon Sep 17 00:00:00 2001 From: Elias Stepanik Date: Sun, 23 Mar 2025 22:40:16 +0100 Subject: [PATCH] Setup 3 --- .../.github}/ISSUE_TEMPLATE/bug_report.md | 0 .../.github}/ISSUE_TEMPLATE/config.yml | 0 .../.github}/ISSUE_TEMPLATE/feature_request.md | 0 .../.github}/PULL_REQUEST_TEMPLATE.md | 0 {.github => template/.github}/dependabot.yml | 0 {.github => template/.github}/workflows/audit.yml | 4 ++-- {.github => template/.github}/workflows/cd.yml | 0 {.github => template/.github}/workflows/ci.yml | 0 .gitignore => template/.gitignore | 0 CODE_OF_CONDUCT.md => template/CODE_OF_CONDUCT.md | 0 CONTRIBUTING.md => template/CONTRIBUTING.md | 0 Cargo.toml => template/Cargo.toml | 0 LICENSE-APACHE.txt => template/LICENSE-APACHE.txt | 0 LICENSE-MIT.txt => template/LICENSE-MIT.txt | 0 README.md => template/README.md | 0 .../assets}/fonts/minecraft_font.ttf | Bin cargo-generate.toml => template/cargo-generate.toml | 0 {src => template/src}/app.rs | 0 {src => template/src}/helper/debug_gizmos.rs | 0 {src => template/src}/helper/egui_dock.rs | 0 {src => template/src}/helper/mod.rs | 0 {src => template/src}/main.rs | 0 .../src}/plugins/camera/camera_plugin.rs | 0 {src => template/src}/plugins/camera/mod.rs | 0 .../src}/plugins/camera/systems/camera_system.rs | 0 {src => template/src}/plugins/camera/systems/mod.rs | 0 .../src}/plugins/environment/environment_plugin.rs | 0 {src => template/src}/plugins/environment/mod.rs | 0 .../environment/systems/environment_system.rs | 0 .../src}/plugins/environment/systems/mod.rs | 0 {src => template/src}/plugins/mod.rs | 0 {src => template/src}/plugins/ui/mod.rs | 0 {src => template/src}/plugins/ui/systems/mod.rs | 0 .../src}/plugins/ui/systems/ui_system.rs | 0 {src => template/src}/plugins/ui/ui_plugin.rs | 0 35 files changed, 2 insertions(+), 2 deletions(-) rename {.github => template/.github}/ISSUE_TEMPLATE/bug_report.md (100%) rename {.github => template/.github}/ISSUE_TEMPLATE/config.yml (100%) rename {.github => template/.github}/ISSUE_TEMPLATE/feature_request.md (100%) rename {.github => template/.github}/PULL_REQUEST_TEMPLATE.md (100%) rename {.github => template/.github}/dependabot.yml (100%) rename {.github => template/.github}/workflows/audit.yml (88%) rename {.github => template/.github}/workflows/cd.yml (100%) rename {.github => template/.github}/workflows/ci.yml (100%) rename .gitignore => template/.gitignore (100%) rename CODE_OF_CONDUCT.md => template/CODE_OF_CONDUCT.md (100%) rename CONTRIBUTING.md => template/CONTRIBUTING.md (100%) rename Cargo.toml => template/Cargo.toml (100%) rename LICENSE-APACHE.txt => template/LICENSE-APACHE.txt (100%) rename LICENSE-MIT.txt => template/LICENSE-MIT.txt (100%) rename README.md => template/README.md (100%) rename {assets => template/assets}/fonts/minecraft_font.ttf (100%) rename cargo-generate.toml => template/cargo-generate.toml (100%) rename {src => template/src}/app.rs (100%) rename {src => template/src}/helper/debug_gizmos.rs (100%) rename {src => template/src}/helper/egui_dock.rs (100%) rename {src => template/src}/helper/mod.rs (100%) rename {src => template/src}/main.rs (100%) rename {src => template/src}/plugins/camera/camera_plugin.rs (100%) rename {src => template/src}/plugins/camera/mod.rs (100%) rename {src => template/src}/plugins/camera/systems/camera_system.rs (100%) rename {src => template/src}/plugins/camera/systems/mod.rs (100%) rename {src => template/src}/plugins/environment/environment_plugin.rs (100%) rename {src => template/src}/plugins/environment/mod.rs (100%) rename {src => template/src}/plugins/environment/systems/environment_system.rs (100%) rename {src => template/src}/plugins/environment/systems/mod.rs (100%) rename {src => template/src}/plugins/mod.rs (100%) rename {src => template/src}/plugins/ui/mod.rs (100%) rename {src => template/src}/plugins/ui/systems/mod.rs (100%) rename {src => template/src}/plugins/ui/systems/ui_system.rs (100%) rename {src => template/src}/plugins/ui/ui_plugin.rs (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/template/.github/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report.md rename to template/.github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/template/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yml rename to template/.github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/template/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to template/.github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/template/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from .github/PULL_REQUEST_TEMPLATE.md rename to template/.github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/dependabot.yml b/template/.github/dependabot.yml similarity index 100% rename from .github/dependabot.yml rename to template/.github/dependabot.yml diff --git a/.github/workflows/audit.yml b/template/.github/workflows/audit.yml similarity index 88% rename from .github/workflows/audit.yml rename to template/.github/workflows/audit.yml index c4463f5..551f913 100644 --- a/.github/workflows/audit.yml +++ b/template/.github/workflows/audit.yml @@ -6,8 +6,8 @@ on: - cron: '0 0 * * *' push: paths: - - '**/Cargo.toml' - - '**/Cargo.lock' + - '../../../Cargo.toml' + - '../../../Cargo.lock' pull_request: {% raw %} jobs: diff --git a/.github/workflows/cd.yml b/template/.github/workflows/cd.yml similarity index 100% rename from .github/workflows/cd.yml rename to template/.github/workflows/cd.yml diff --git a/.github/workflows/ci.yml b/template/.github/workflows/ci.yml similarity index 100% rename from .github/workflows/ci.yml rename to template/.github/workflows/ci.yml diff --git a/.gitignore b/template/.gitignore similarity index 100% rename from .gitignore rename to template/.gitignore diff --git a/CODE_OF_CONDUCT.md b/template/CODE_OF_CONDUCT.md similarity index 100% rename from CODE_OF_CONDUCT.md rename to template/CODE_OF_CONDUCT.md diff --git a/CONTRIBUTING.md b/template/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to template/CONTRIBUTING.md diff --git a/Cargo.toml b/template/Cargo.toml similarity index 100% rename from Cargo.toml rename to template/Cargo.toml diff --git a/LICENSE-APACHE.txt b/template/LICENSE-APACHE.txt similarity index 100% rename from LICENSE-APACHE.txt rename to template/LICENSE-APACHE.txt diff --git a/LICENSE-MIT.txt b/template/LICENSE-MIT.txt similarity index 100% rename from LICENSE-MIT.txt rename to template/LICENSE-MIT.txt diff --git a/README.md b/template/README.md similarity index 100% rename from README.md rename to template/README.md diff --git a/assets/fonts/minecraft_font.ttf b/template/assets/fonts/minecraft_font.ttf similarity index 100% rename from assets/fonts/minecraft_font.ttf rename to template/assets/fonts/minecraft_font.ttf diff --git a/cargo-generate.toml b/template/cargo-generate.toml similarity index 100% rename from cargo-generate.toml rename to template/cargo-generate.toml diff --git a/src/app.rs b/template/src/app.rs similarity index 100% rename from src/app.rs rename to template/src/app.rs diff --git a/src/helper/debug_gizmos.rs b/template/src/helper/debug_gizmos.rs similarity index 100% rename from src/helper/debug_gizmos.rs rename to template/src/helper/debug_gizmos.rs diff --git a/src/helper/egui_dock.rs b/template/src/helper/egui_dock.rs similarity index 100% rename from src/helper/egui_dock.rs rename to template/src/helper/egui_dock.rs diff --git a/src/helper/mod.rs b/template/src/helper/mod.rs similarity index 100% rename from src/helper/mod.rs rename to template/src/helper/mod.rs diff --git a/src/main.rs b/template/src/main.rs similarity index 100% rename from src/main.rs rename to template/src/main.rs diff --git a/src/plugins/camera/camera_plugin.rs b/template/src/plugins/camera/camera_plugin.rs similarity index 100% rename from src/plugins/camera/camera_plugin.rs rename to template/src/plugins/camera/camera_plugin.rs diff --git a/src/plugins/camera/mod.rs b/template/src/plugins/camera/mod.rs similarity index 100% rename from src/plugins/camera/mod.rs rename to template/src/plugins/camera/mod.rs diff --git a/src/plugins/camera/systems/camera_system.rs b/template/src/plugins/camera/systems/camera_system.rs similarity index 100% rename from src/plugins/camera/systems/camera_system.rs rename to template/src/plugins/camera/systems/camera_system.rs diff --git a/src/plugins/camera/systems/mod.rs b/template/src/plugins/camera/systems/mod.rs similarity index 100% rename from src/plugins/camera/systems/mod.rs rename to template/src/plugins/camera/systems/mod.rs diff --git a/src/plugins/environment/environment_plugin.rs b/template/src/plugins/environment/environment_plugin.rs similarity index 100% rename from src/plugins/environment/environment_plugin.rs rename to template/src/plugins/environment/environment_plugin.rs diff --git a/src/plugins/environment/mod.rs b/template/src/plugins/environment/mod.rs similarity index 100% rename from src/plugins/environment/mod.rs rename to template/src/plugins/environment/mod.rs diff --git a/src/plugins/environment/systems/environment_system.rs b/template/src/plugins/environment/systems/environment_system.rs similarity index 100% rename from src/plugins/environment/systems/environment_system.rs rename to template/src/plugins/environment/systems/environment_system.rs diff --git a/src/plugins/environment/systems/mod.rs b/template/src/plugins/environment/systems/mod.rs similarity index 100% rename from src/plugins/environment/systems/mod.rs rename to template/src/plugins/environment/systems/mod.rs diff --git a/src/plugins/mod.rs b/template/src/plugins/mod.rs similarity index 100% rename from src/plugins/mod.rs rename to template/src/plugins/mod.rs diff --git a/src/plugins/ui/mod.rs b/template/src/plugins/ui/mod.rs similarity index 100% rename from src/plugins/ui/mod.rs rename to template/src/plugins/ui/mod.rs diff --git a/src/plugins/ui/systems/mod.rs b/template/src/plugins/ui/systems/mod.rs similarity index 100% rename from src/plugins/ui/systems/mod.rs rename to template/src/plugins/ui/systems/mod.rs diff --git a/src/plugins/ui/systems/ui_system.rs b/template/src/plugins/ui/systems/ui_system.rs similarity index 100% rename from src/plugins/ui/systems/ui_system.rs rename to template/src/plugins/ui/systems/ui_system.rs diff --git a/src/plugins/ui/ui_plugin.rs b/template/src/plugins/ui/ui_plugin.rs similarity index 100% rename from src/plugins/ui/ui_plugin.rs rename to template/src/plugins/ui/ui_plugin.rs