├── .codespellrc ├── .dockerignore ├── .env.example ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── internal-error.yml │ └── rfc.yml └── workflows │ ├── lints.yml │ └── tests.yml ├── .gitignore ├── .idea ├── .gitignore ├── HarTex.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ ├── agpl_3_0.xml │ └── profiles_settings.xml ├── dataSources.xml ├── discordrp.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── jsonSchemas.xml ├── kotlinc.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── .luarc.json ├── .whitesource ├── CHANGELOG.md ├── CODE_OF_CONDUCT ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── SECURITY.md ├── api-backend ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── clippy.toml ├── hartex-backend-driver │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── hartex-backend-models │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── uptime.rs ├── hartex-backend-routes │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── uptime.rs └── rustfmt.toml ├── database ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── clippy.toml ├── hartex-database-migrate │ ├── Cargo.toml │ ├── api-backend-migrations │ │ └── V1__init.sql │ ├── build.rs │ ├── configuration-migrations │ │ └── V1__init.sql │ ├── discord-frontend-migrations │ │ ├── V1__init.sql │ │ └── V2__drop_dbcache.sql │ └── src │ │ └── main.rs ├── hartex-database-queries │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.rs │ ├── queries │ │ ├── api_backend │ │ │ ├── start_timestamp_select_by_component.sql │ │ │ └── start_timestamp_upsert.sql │ │ ├── configuration │ │ │ └── plugin_enabled.sql │ │ └── discord_frontend │ │ │ └── .gitkeep │ ├── schemas │ │ ├── api_backend.sql │ │ ├── configuration.sql │ │ └── discord_frontend.sql │ └── src │ │ ├── lib.rs │ │ ├── queries │ │ ├── api_backend │ │ │ ├── mod.rs │ │ │ ├── start_timestamp_select_by_component.rs │ │ │ └── start_timestamp_upsert.rs │ │ ├── configuration │ │ │ ├── mod.rs │ │ │ └── plugin_enabled.rs │ │ ├── discord_frontend │ │ │ ├── cached_emoji_select_by_guild_id.rs │ │ │ ├── cached_emoji_select_by_id.rs │ │ │ ├── cached_emoji_upsert.rs │ │ │ ├── cached_guild_select_by_id.rs │ │ │ ├── cached_guild_upsert.rs │ │ │ ├── cached_member_select_by_guild_id.rs │ │ │ ├── cached_member_select_by_user_id_and_guild_id.rs │ │ │ ├── cached_member_upsert.rs │ │ │ ├── cached_role_select_by_guild_id.rs │ │ │ ├── cached_role_select_by_id_and_guild_id.rs │ │ │ ├── cached_role_upsert.rs │ │ │ ├── cached_user_select_by_id.rs │ │ │ ├── cached_user_upsert.rs │ │ │ └── mod.rs │ │ └── mod.rs │ │ ├── result.rs │ │ └── tables │ │ ├── api_backend.rs │ │ ├── configuration.rs │ │ ├── discord_frontend.rs │ │ └── mod.rs ├── hartex-database-typedsql │ ├── Cargo.toml │ └── src │ │ ├── codegen │ │ ├── mod.rs │ │ ├── queries.rs │ │ ├── tables.rs │ │ └── types.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── query │ │ ├── insert.rs │ │ ├── mod.rs │ │ ├── select.rs │ │ └── types.rs │ │ ├── schema.rs │ │ └── visitor.rs └── rustfmt.toml ├── discord-frontend ├── .cargo │ └── config.toml ├── .config │ └── nextest.toml ├── Cargo.lock ├── Cargo.toml ├── hartex-discord-cdn │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── hartex-discord-commands-core │ ├── Cargo.toml │ └── src │ │ ├── context.rs │ │ ├── lib.rs │ │ └── traits.rs ├── hartex-discord-commands-macros │ ├── Cargo.toml │ └── src │ │ ├── commandmetadata.rs │ │ ├── lib.rs │ │ └── pluginmetadata.rs ├── hartex-discord-commands-manager │ ├── Cargo.toml │ └── src │ │ ├── cmdline.rs │ │ ├── commands │ │ ├── list_from_discord.rs │ │ ├── list_from_fs.rs │ │ ├── mod.rs │ │ ├── patch.rs │ │ ├── register.rs │ │ └── unregister.rs │ │ ├── main.rs │ │ └── model │ │ ├── command.rs │ │ ├── mod.rs │ │ └── option │ │ ├── choice.rs │ │ └── mod.rs ├── hartex-discord-commands-spec │ ├── general-plugin │ │ ├── about.json │ │ ├── contributors.json │ │ ├── latency.json │ │ └── uptime.json │ └── utilities-plugin │ │ └── info.json ├── hartex-discord-commands │ ├── Cargo.toml │ ├── i18n.toml │ ├── i18n │ │ ├── en-GB │ │ │ └── hartex_discord_commands.ftl │ │ ├── ja │ │ │ └── discord-frontend │ │ │ │ ├── commands │ │ │ │ ├── general-plugin.ftl │ │ │ │ └── utilities-plugin.ftl │ │ │ │ ├── error.ftl │ │ │ │ ├── general.ftl │ │ │ │ └── guild.ftl │ │ ├── zh-CN │ │ │ └── discord-frontend │ │ │ │ ├── commands │ │ │ │ ├── general-plugin.ftl │ │ │ │ └── utilities-plugin.ftl │ │ │ │ ├── error.ftl │ │ │ │ ├── general.ftl │ │ │ │ └── guild.ftl │ │ └── zh-TW │ │ │ └── discord-frontend │ │ │ ├── commands │ │ │ ├── general-plugin.ftl │ │ │ └── utilities-plugin.ftl │ │ │ ├── error.ftl │ │ │ ├── general.ftl │ │ │ └── guild.ftl │ └── src │ │ ├── general │ │ ├── about.rs │ │ ├── contributors.rs │ │ └── mod.rs │ │ ├── i18n.rs │ │ ├── lib.rs │ │ └── utilities │ │ ├── info │ │ ├── info_bot.rs │ │ ├── info_emoji.rs │ │ ├── info_role.rs │ │ ├── info_server.rs │ │ ├── info_user.rs │ │ └── mod.rs │ │ └── mod.rs ├── hartex-discord-configuration-luart │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── tests │ │ └── parse.rs ├── hartex-discord-configuration-models │ ├── Cargo.toml │ └── src │ │ ├── appearance.rs │ │ ├── dashboard.rs │ │ ├── eventflags.rs │ │ ├── lib.rs │ │ └── plugins │ │ ├── management.rs │ │ ├── mod.rs │ │ ├── modlog │ │ ├── logger.rs │ │ └── mod.rs │ │ └── utilities.rs ├── hartex-discord-configuration-provider │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── hartex-discord-core │ ├── Cargo.toml │ └── src │ │ ├── discord.rs │ │ └── lib.rs ├── hartex-discord-grpc-protos │ ├── Cargo.toml │ ├── build.rs │ ├── protos │ │ └── gateway.proto │ └── src │ │ └── lib.rs ├── hartex-discord-internal-events │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── hartex-discord-leader │ ├── Cargo.toml │ └── src │ │ ├── grpc.rs │ │ ├── main.rs │ │ ├── queue.rs │ │ └── shards.rs ├── hartex-discord-worker │ ├── Cargo.toml │ └── src │ │ ├── errorhandler.rs │ │ ├── eventcallback.rs │ │ ├── grpc.rs │ │ ├── interaction.rs │ │ └── main.rs └── rustfmt.toml ├── docker └── docker-compose.yml ├── hartex.example.conf ├── localization ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── hartex-localization-bindings │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── hartex-localization-core │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── lib.rs ├── hartex-localization-embedded │ ├── Cargo.toml │ ├── i18n.toml │ ├── i18n │ │ └── .gitkeep │ └── src │ │ └── lib.rs ├── hartex-localization-loader │ ├── Cargo.toml │ └── src │ │ ├── env.rs │ │ └── lib.rs ├── locales │ ├── en-GB │ │ └── discord-frontend │ │ │ ├── commands │ │ │ ├── general-plugin.ftl │ │ │ └── utilities-plugin.ftl │ │ │ ├── error.ftl │ │ │ ├── general.ftl │ │ │ └── guild.ftl │ ├── ja │ │ └── discord-frontend │ │ │ ├── commands │ │ │ ├── general-plugin.ftl │ │ │ └── utilities-plugin.ftl │ │ │ ├── error.ftl │ │ │ ├── general.ftl │ │ │ └── guild.ftl │ ├── zh-CN │ │ └── discord-frontend │ │ │ ├── commands │ │ │ ├── general-plugin.ftl │ │ │ └── utilities-plugin.ftl │ │ │ ├── error.ftl │ │ │ ├── general.ftl │ │ │ └── guild.ftl │ └── zh-TW │ │ └── discord-frontend │ │ ├── commands │ │ ├── general-plugin.ftl │ │ └── utilities-plugin.ftl │ │ ├── error.ftl │ │ ├── general.ftl │ │ └── guild.ftl └── rustfmt.toml ├── meta └── images │ ├── agplv3.svg │ └── hartexbanner.png ├── pyproject.toml ├── renovate.json ├── rust-utilities ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── hartex-async-lazy │ ├── Cargo.toml │ └── src │ │ ├── lazy.rs │ │ └── lib.rs ├── hartex-bitflags-utils │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── hartex-discord-utils │ ├── Cargo.toml │ └── src │ │ ├── commands.rs │ │ ├── database.rs │ │ ├── hyper.rs │ │ ├── interaction │ │ ├── components.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── localizable │ │ ├── bool.rs │ │ ├── discord │ │ │ ├── guild.rs │ │ │ └── mod.rs │ │ └── mod.rs │ │ ├── markdown.rs │ │ └── postgres.rs ├── hartex-errors │ ├── Cargo.toml │ └── src │ │ ├── dotenv.rs │ │ └── lib.rs ├── hartex-macro-utils │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── hartex-tracing │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── rustfmt.toml ├── schemas └── cmdmgr-spec-schema-v1.json ├── tests ├── conf-eval │ ├── configuration.expected │ └── configuration.lua └── ui │ └── discord-frontend │ ├── command_macro │ ├── expected_comma_1.rs │ ├── expected_comma_1.stderr │ ├── expected_equal_1.rs │ ├── expected_equal_1.stderr │ ├── expected_equal_2.rs │ ├── expected_equal_2.stderr │ ├── expected_ident.rs │ ├── expected_ident.stderr │ ├── expected_literal_3.rs │ ├── expected_literal_3.stderr │ ├── expected_name.rs │ ├── expected_name.stderr │ ├── expected_plugin.rs │ ├── expected_plugin.stderr │ ├── expected_string_literal.rs │ ├── expected_string_literal.stderr │ ├── unexpected_eof.rs │ └── unexpected_eof.stderr │ └── plugin_macro │ ├── expected_equal_1.rs │ ├── expected_equal_1.stderr │ ├── expected_name.rs │ ├── expected_name.stderr │ ├── expected_string_literal.rs │ ├── expected_string_literal.stderr │ ├── unexpected_eof.rs │ └── unexpected_eof.stderr ├── tools ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── bootstrap │ ├── Cargo.toml │ ├── bootstrap.py │ ├── build.rs │ ├── builder.py │ ├── cmdrunner.py │ ├── config │ │ ├── fleet-settings.json │ │ ├── vscode-settings.json │ │ └── zed-settings.json │ ├── profiles │ │ ├── hartex.api.conf │ │ ├── hartex.discord.conf │ │ ├── hartex.hosting.conf │ │ ├── hartex.localization.conf │ │ └── hartex.web.conf │ └── src │ │ ├── bin │ │ └── main.rs │ │ ├── build.rs │ │ ├── builder.rs │ │ ├── config │ │ ├── flags.rs │ │ ├── ini.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ └── steps │ │ ├── build.rs │ │ ├── check.rs │ │ ├── clean.rs │ │ ├── clippy.rs │ │ ├── mod.rs │ │ ├── setup.rs │ │ └── test.rs ├── rustfmt.toml └── testsuite │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── bin │ └── main.rs │ ├── config.rs │ ├── flags.rs │ ├── header.rs │ ├── lib.rs │ ├── testrunner │ ├── context.rs │ ├── diff.rs │ └── mod.rs │ └── tests.rs ├── uv.lock ├── web-frontend ├── .gitignore ├── App.vue ├── README.md ├── bun.lockb ├── components │ ├── Footer.vue │ ├── Landing │ │ ├── Contribute.vue │ │ ├── FAQ │ │ │ ├── Accordion.vue │ │ │ └── index.vue │ │ ├── Feature │ │ │ ├── Card.vue │ │ │ └── Grid.vue │ │ └── Hero.vue │ └── Navbar.vue ├── composables │ └── useSmoothScroll.ts ├── content │ └── changelog │ │ └── latest.md ├── layouts │ └── default.vue ├── nuxt.config.ts ├── package.json ├── pages │ └── index.vue ├── public │ ├── favicon.ico │ └── img │ │ └── hartexbanner.png ├── tsconfig.json └── uno.config.ts └── x.py /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.codespellrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/internal-error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.github/ISSUE_TEMPLATE/internal-error.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rfc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.github/ISSUE_TEMPLATE/rfc.yml -------------------------------------------------------------------------------- /.github/workflows/lints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.github/workflows/lints.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/HarTex.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/HarTex.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/agpl_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/copyright/agpl_3_0.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/discordrp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/discordrp.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/jsonSchemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/jsonSchemas.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.luarc.json -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/.whitesource -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api-backend/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/.cargo/config.toml -------------------------------------------------------------------------------- /api-backend/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/Cargo.lock -------------------------------------------------------------------------------- /api-backend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/Cargo.toml -------------------------------------------------------------------------------- /api-backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/Dockerfile -------------------------------------------------------------------------------- /api-backend/clippy.toml: -------------------------------------------------------------------------------- 1 | doc-valid-idents = ["HarTex"] 2 | -------------------------------------------------------------------------------- /api-backend/hartex-backend-driver/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-driver/Cargo.toml -------------------------------------------------------------------------------- /api-backend/hartex-backend-driver/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-driver/src/main.rs -------------------------------------------------------------------------------- /api-backend/hartex-backend-models/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-models/Cargo.toml -------------------------------------------------------------------------------- /api-backend/hartex-backend-models/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-models/src/lib.rs -------------------------------------------------------------------------------- /api-backend/hartex-backend-models/src/uptime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-models/src/uptime.rs -------------------------------------------------------------------------------- /api-backend/hartex-backend-routes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-routes/Cargo.toml -------------------------------------------------------------------------------- /api-backend/hartex-backend-routes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-routes/src/lib.rs -------------------------------------------------------------------------------- /api-backend/hartex-backend-routes/src/uptime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/hartex-backend-routes/src/uptime.rs -------------------------------------------------------------------------------- /api-backend/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/api-backend/rustfmt.toml -------------------------------------------------------------------------------- /database/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/Cargo.lock -------------------------------------------------------------------------------- /database/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/Cargo.toml -------------------------------------------------------------------------------- /database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/Dockerfile -------------------------------------------------------------------------------- /database/clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/clippy.toml -------------------------------------------------------------------------------- /database/hartex-database-migrate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-migrate/Cargo.toml -------------------------------------------------------------------------------- /database/hartex-database-migrate/api-backend-migrations/V1__init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-migrate/api-backend-migrations/V1__init.sql -------------------------------------------------------------------------------- /database/hartex-database-migrate/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-migrate/build.rs -------------------------------------------------------------------------------- /database/hartex-database-migrate/configuration-migrations/V1__init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-migrate/configuration-migrations/V1__init.sql -------------------------------------------------------------------------------- /database/hartex-database-migrate/discord-frontend-migrations/V1__init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-migrate/discord-frontend-migrations/V1__init.sql -------------------------------------------------------------------------------- /database/hartex-database-migrate/discord-frontend-migrations/V2__drop_dbcache.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-migrate/discord-frontend-migrations/V2__drop_dbcache.sql -------------------------------------------------------------------------------- /database/hartex-database-migrate/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-migrate/src/main.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/.cargo/config.toml -------------------------------------------------------------------------------- /database/hartex-database-queries/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/Cargo.lock -------------------------------------------------------------------------------- /database/hartex-database-queries/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/Cargo.toml -------------------------------------------------------------------------------- /database/hartex-database-queries/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/build.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/queries/api_backend/start_timestamp_select_by_component.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/queries/api_backend/start_timestamp_select_by_component.sql -------------------------------------------------------------------------------- /database/hartex-database-queries/queries/api_backend/start_timestamp_upsert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/queries/api_backend/start_timestamp_upsert.sql -------------------------------------------------------------------------------- /database/hartex-database-queries/queries/configuration/plugin_enabled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/queries/configuration/plugin_enabled.sql -------------------------------------------------------------------------------- /database/hartex-database-queries/queries/discord_frontend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/hartex-database-queries/schemas/api_backend.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/schemas/api_backend.sql -------------------------------------------------------------------------------- /database/hartex-database-queries/schemas/configuration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/schemas/configuration.sql -------------------------------------------------------------------------------- /database/hartex-database-queries/schemas/discord_frontend.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/schemas/discord_frontend.sql -------------------------------------------------------------------------------- /database/hartex-database-queries/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/lib.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/api_backend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/api_backend/mod.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/api_backend/start_timestamp_select_by_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/api_backend/start_timestamp_select_by_component.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/api_backend/start_timestamp_upsert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/api_backend/start_timestamp_upsert.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/configuration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/configuration/mod.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/configuration/plugin_enabled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/configuration/plugin_enabled.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_emoji_select_by_guild_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_emoji_select_by_guild_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_emoji_select_by_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_emoji_select_by_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_emoji_upsert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_emoji_upsert.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_guild_select_by_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_guild_select_by_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_guild_upsert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_guild_upsert.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_member_select_by_guild_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_member_select_by_guild_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_member_select_by_user_id_and_guild_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_member_select_by_user_id_and_guild_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_member_upsert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_member_upsert.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_role_select_by_guild_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_role_select_by_guild_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_role_select_by_id_and_guild_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_role_select_by_id_and_guild_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_role_upsert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_role_upsert.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_user_select_by_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_user_select_by_id.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/cached_user_upsert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/cached_user_upsert.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/discord_frontend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/discord_frontend/mod.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/queries/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/queries/mod.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/result.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/tables/api_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/tables/api_backend.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/tables/configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/tables/configuration.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/tables/discord_frontend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/tables/discord_frontend.rs -------------------------------------------------------------------------------- /database/hartex-database-queries/src/tables/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-queries/src/tables/mod.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/Cargo.toml -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/codegen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/codegen/mod.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/codegen/queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/codegen/queries.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/codegen/tables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/codegen/tables.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/codegen/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/codegen/types.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/error.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/lib.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/query/insert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/query/insert.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/query/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/query/mod.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/query/select.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/query/select.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/query/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/query/types.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/schema.rs -------------------------------------------------------------------------------- /database/hartex-database-typedsql/src/visitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/hartex-database-typedsql/src/visitor.rs -------------------------------------------------------------------------------- /database/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/database/rustfmt.toml -------------------------------------------------------------------------------- /discord-frontend/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/.cargo/config.toml -------------------------------------------------------------------------------- /discord-frontend/.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/.config/nextest.toml -------------------------------------------------------------------------------- /discord-frontend/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/Cargo.lock -------------------------------------------------------------------------------- /discord-frontend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-cdn/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-cdn/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-cdn/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-cdn/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-core/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-core/src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-core/src/context.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-core/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-core/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-core/src/traits.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-macros/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-macros/src/commandmetadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-macros/src/commandmetadata.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-macros/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-macros/src/pluginmetadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-macros/src/pluginmetadata.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/cmdline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/cmdline.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/commands/list_from_discord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/commands/list_from_discord.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/commands/list_from_fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/commands/list_from_fs.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/commands/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/commands/patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/commands/patch.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/commands/register.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/commands/register.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/commands/unregister.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/commands/unregister.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/main.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/model/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/model/command.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/model/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/model/option/choice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/model/option/choice.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-manager/src/model/option/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-manager/src/model/option/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-spec/general-plugin/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-spec/general-plugin/about.json -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-spec/general-plugin/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-spec/general-plugin/contributors.json -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-spec/general-plugin/latency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-spec/general-plugin/latency.json -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-spec/general-plugin/uptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-spec/general-plugin/uptime.json -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands-spec/utilities-plugin/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands-spec/utilities-plugin/info.json -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en-GB" 2 | 3 | [fluent] 4 | assets_dir = "i18n" 5 | -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/en-GB/hartex_discord_commands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/en-GB/hartex_discord_commands.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/commands/general-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/commands/general-plugin.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/commands/utilities-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/commands/utilities-plugin.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/error.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/general.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/general.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/guild.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/ja/discord-frontend/guild.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/commands/general-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/commands/general-plugin.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/commands/utilities-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/commands/utilities-plugin.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/error.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/general.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/general.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/guild.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-CN/discord-frontend/guild.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/commands/general-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/commands/general-plugin.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/commands/utilities-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/commands/utilities-plugin.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/error.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/general.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/general.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/guild.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/i18n/zh-TW/discord-frontend/guild.ftl -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/general/about.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/general/about.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/general/contributors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/general/contributors.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/general/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/general/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/i18n.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/i18n.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/utilities/info/info_bot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/utilities/info/info_bot.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/utilities/info/info_emoji.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/utilities/info/info_emoji.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/utilities/info/info_role.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/utilities/info/info_role.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/utilities/info/info_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/utilities/info/info_server.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/utilities/info/info_user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/utilities/info/info_user.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/utilities/info/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/utilities/info/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-commands/src/utilities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-commands/src/utilities/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-luart/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-luart/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-luart/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-luart/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-luart/tests/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-luart/tests/parse.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/appearance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/appearance.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/dashboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/dashboard.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/eventflags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/eventflags.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/plugins/management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/plugins/management.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/plugins/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/plugins/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/plugins/modlog/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/plugins/modlog/logger.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/plugins/modlog/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/plugins/modlog/mod.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-models/src/plugins/utilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-models/src/plugins/utilities.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-provider/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-provider/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-configuration-provider/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-configuration-provider/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-core/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-core/src/discord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-core/src/discord.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-core/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-grpc-protos/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-grpc-protos/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-grpc-protos/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-grpc-protos/build.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-grpc-protos/protos/gateway.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-grpc-protos/protos/gateway.proto -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-grpc-protos/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-grpc-protos/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-internal-events/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-internal-events/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-internal-events/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-internal-events/src/lib.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-leader/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-leader/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-leader/src/grpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-leader/src/grpc.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-leader/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-leader/src/main.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-leader/src/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-leader/src/queue.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-leader/src/shards.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-leader/src/shards.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-worker/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-worker/Cargo.toml -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-worker/src/errorhandler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-worker/src/errorhandler.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-worker/src/eventcallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-worker/src/eventcallback.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-worker/src/grpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-worker/src/grpc.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-worker/src/interaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-worker/src/interaction.rs -------------------------------------------------------------------------------- /discord-frontend/hartex-discord-worker/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/hartex-discord-worker/src/main.rs -------------------------------------------------------------------------------- /discord-frontend/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/discord-frontend/rustfmt.toml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /hartex.example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/hartex.example.conf -------------------------------------------------------------------------------- /localization/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/.cargo/config.toml -------------------------------------------------------------------------------- /localization/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/Cargo.lock -------------------------------------------------------------------------------- /localization/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/Cargo.toml -------------------------------------------------------------------------------- /localization/hartex-localization-bindings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-bindings/Cargo.toml -------------------------------------------------------------------------------- /localization/hartex-localization-bindings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-bindings/src/lib.rs -------------------------------------------------------------------------------- /localization/hartex-localization-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-core/Cargo.toml -------------------------------------------------------------------------------- /localization/hartex-localization-core/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-core/build.rs -------------------------------------------------------------------------------- /localization/hartex-localization-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-core/src/lib.rs -------------------------------------------------------------------------------- /localization/hartex-localization-embedded/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-embedded/Cargo.toml -------------------------------------------------------------------------------- /localization/hartex-localization-embedded/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en-GB" 2 | 3 | [fluent] 4 | assets_dir = "i18n" 5 | -------------------------------------------------------------------------------- /localization/hartex-localization-embedded/i18n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localization/hartex-localization-embedded/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-embedded/src/lib.rs -------------------------------------------------------------------------------- /localization/hartex-localization-loader/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-loader/Cargo.toml -------------------------------------------------------------------------------- /localization/hartex-localization-loader/src/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-loader/src/env.rs -------------------------------------------------------------------------------- /localization/hartex-localization-loader/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/hartex-localization-loader/src/lib.rs -------------------------------------------------------------------------------- /localization/locales/en-GB/discord-frontend/commands/general-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/en-GB/discord-frontend/commands/general-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/en-GB/discord-frontend/commands/utilities-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/en-GB/discord-frontend/commands/utilities-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/en-GB/discord-frontend/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/en-GB/discord-frontend/error.ftl -------------------------------------------------------------------------------- /localization/locales/en-GB/discord-frontend/general.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/en-GB/discord-frontend/general.ftl -------------------------------------------------------------------------------- /localization/locales/en-GB/discord-frontend/guild.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/en-GB/discord-frontend/guild.ftl -------------------------------------------------------------------------------- /localization/locales/ja/discord-frontend/commands/general-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/ja/discord-frontend/commands/general-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/ja/discord-frontend/commands/utilities-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/ja/discord-frontend/commands/utilities-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/ja/discord-frontend/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/ja/discord-frontend/error.ftl -------------------------------------------------------------------------------- /localization/locales/ja/discord-frontend/general.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/ja/discord-frontend/general.ftl -------------------------------------------------------------------------------- /localization/locales/ja/discord-frontend/guild.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/ja/discord-frontend/guild.ftl -------------------------------------------------------------------------------- /localization/locales/zh-CN/discord-frontend/commands/general-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-CN/discord-frontend/commands/general-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/zh-CN/discord-frontend/commands/utilities-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-CN/discord-frontend/commands/utilities-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/zh-CN/discord-frontend/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-CN/discord-frontend/error.ftl -------------------------------------------------------------------------------- /localization/locales/zh-CN/discord-frontend/general.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-CN/discord-frontend/general.ftl -------------------------------------------------------------------------------- /localization/locales/zh-CN/discord-frontend/guild.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-CN/discord-frontend/guild.ftl -------------------------------------------------------------------------------- /localization/locales/zh-TW/discord-frontend/commands/general-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-TW/discord-frontend/commands/general-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/zh-TW/discord-frontend/commands/utilities-plugin.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-TW/discord-frontend/commands/utilities-plugin.ftl -------------------------------------------------------------------------------- /localization/locales/zh-TW/discord-frontend/error.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-TW/discord-frontend/error.ftl -------------------------------------------------------------------------------- /localization/locales/zh-TW/discord-frontend/general.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-TW/discord-frontend/general.ftl -------------------------------------------------------------------------------- /localization/locales/zh-TW/discord-frontend/guild.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/locales/zh-TW/discord-frontend/guild.ftl -------------------------------------------------------------------------------- /localization/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/localization/rustfmt.toml -------------------------------------------------------------------------------- /meta/images/agplv3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/meta/images/agplv3.svg -------------------------------------------------------------------------------- /meta/images/hartexbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/meta/images/hartexbanner.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-utilities/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/.cargo/config.toml -------------------------------------------------------------------------------- /rust-utilities/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/Cargo.lock -------------------------------------------------------------------------------- /rust-utilities/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/Cargo.toml -------------------------------------------------------------------------------- /rust-utilities/hartex-async-lazy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-async-lazy/Cargo.toml -------------------------------------------------------------------------------- /rust-utilities/hartex-async-lazy/src/lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-async-lazy/src/lazy.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-async-lazy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-async-lazy/src/lib.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-bitflags-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-bitflags-utils/Cargo.toml -------------------------------------------------------------------------------- /rust-utilities/hartex-bitflags-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-bitflags-utils/src/lib.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/Cargo.toml -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/commands.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/database.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/hyper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/hyper.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/interaction/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/interaction/components.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/interaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/interaction/mod.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/lib.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/localizable/bool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/localizable/bool.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/localizable/discord/guild.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/localizable/discord/guild.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/localizable/discord/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/localizable/discord/mod.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/localizable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/localizable/mod.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/markdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/markdown.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-discord-utils/src/postgres.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-discord-utils/src/postgres.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-errors/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-errors/Cargo.toml -------------------------------------------------------------------------------- /rust-utilities/hartex-errors/src/dotenv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-errors/src/dotenv.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-errors/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-errors/src/lib.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-macro-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-macro-utils/Cargo.toml -------------------------------------------------------------------------------- /rust-utilities/hartex-macro-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-macro-utils/src/lib.rs -------------------------------------------------------------------------------- /rust-utilities/hartex-tracing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-tracing/Cargo.toml -------------------------------------------------------------------------------- /rust-utilities/hartex-tracing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/hartex-tracing/src/lib.rs -------------------------------------------------------------------------------- /rust-utilities/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/rust-utilities/rustfmt.toml -------------------------------------------------------------------------------- /schemas/cmdmgr-spec-schema-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/schemas/cmdmgr-spec-schema-v1.json -------------------------------------------------------------------------------- /tests/conf-eval/configuration.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conf-eval/configuration.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/conf-eval/configuration.lua -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_comma_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_comma_1.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_comma_1.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_comma_1.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_equal_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_equal_1.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_equal_1.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_equal_1.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_equal_2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_equal_2.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_equal_2.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_equal_2.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_ident.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_ident.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_ident.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_literal_3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_literal_3.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_literal_3.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_literal_3.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_name.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_name.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_name.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_plugin.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_plugin.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_plugin.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_string_literal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_string_literal.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/expected_string_literal.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/expected_string_literal.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/unexpected_eof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/unexpected_eof.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/command_macro/unexpected_eof.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/command_macro/unexpected_eof.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/expected_equal_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/expected_equal_1.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/expected_equal_1.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/expected_equal_1.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/expected_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/expected_name.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/expected_name.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/expected_name.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/expected_string_literal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/expected_string_literal.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/expected_string_literal.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/expected_string_literal.stderr -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/unexpected_eof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/unexpected_eof.rs -------------------------------------------------------------------------------- /tests/ui/discord-frontend/plugin_macro/unexpected_eof.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tests/ui/discord-frontend/plugin_macro/unexpected_eof.stderr -------------------------------------------------------------------------------- /tools/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/.cargo/config.toml -------------------------------------------------------------------------------- /tools/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/Cargo.lock -------------------------------------------------------------------------------- /tools/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/Cargo.toml -------------------------------------------------------------------------------- /tools/bootstrap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/Cargo.toml -------------------------------------------------------------------------------- /tools/bootstrap/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/bootstrap.py -------------------------------------------------------------------------------- /tools/bootstrap/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/build.rs -------------------------------------------------------------------------------- /tools/bootstrap/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/builder.py -------------------------------------------------------------------------------- /tools/bootstrap/cmdrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/cmdrunner.py -------------------------------------------------------------------------------- /tools/bootstrap/config/fleet-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/config/fleet-settings.json -------------------------------------------------------------------------------- /tools/bootstrap/config/vscode-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/config/vscode-settings.json -------------------------------------------------------------------------------- /tools/bootstrap/config/zed-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/config/zed-settings.json -------------------------------------------------------------------------------- /tools/bootstrap/profiles/hartex.api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/profiles/hartex.api.conf -------------------------------------------------------------------------------- /tools/bootstrap/profiles/hartex.discord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/profiles/hartex.discord.conf -------------------------------------------------------------------------------- /tools/bootstrap/profiles/hartex.hosting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/profiles/hartex.hosting.conf -------------------------------------------------------------------------------- /tools/bootstrap/profiles/hartex.localization.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/profiles/hartex.localization.conf -------------------------------------------------------------------------------- /tools/bootstrap/profiles/hartex.web.conf: -------------------------------------------------------------------------------- 1 | # Configuration file for building HarTex (web). 2 | -------------------------------------------------------------------------------- /tools/bootstrap/src/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/bin/main.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/build.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/builder.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/config/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/config/flags.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/config/ini.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/config/ini.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/config/mod.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/lib.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/steps/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/steps/build.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/steps/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/steps/check.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/steps/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/steps/clean.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/steps/clippy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/steps/clippy.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/steps/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/steps/mod.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/steps/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/steps/setup.rs -------------------------------------------------------------------------------- /tools/bootstrap/src/steps/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/bootstrap/src/steps/test.rs -------------------------------------------------------------------------------- /tools/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/rustfmt.toml -------------------------------------------------------------------------------- /tools/testsuite/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/Cargo.toml -------------------------------------------------------------------------------- /tools/testsuite/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/build.rs -------------------------------------------------------------------------------- /tools/testsuite/src/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/bin/main.rs -------------------------------------------------------------------------------- /tools/testsuite/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/config.rs -------------------------------------------------------------------------------- /tools/testsuite/src/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/flags.rs -------------------------------------------------------------------------------- /tools/testsuite/src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/header.rs -------------------------------------------------------------------------------- /tools/testsuite/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/lib.rs -------------------------------------------------------------------------------- /tools/testsuite/src/testrunner/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/testrunner/context.rs -------------------------------------------------------------------------------- /tools/testsuite/src/testrunner/diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/testrunner/diff.rs -------------------------------------------------------------------------------- /tools/testsuite/src/testrunner/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/testrunner/mod.rs -------------------------------------------------------------------------------- /tools/testsuite/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/tools/testsuite/src/tests.rs -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/uv.lock -------------------------------------------------------------------------------- /web-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/.gitignore -------------------------------------------------------------------------------- /web-frontend/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/App.vue -------------------------------------------------------------------------------- /web-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/README.md -------------------------------------------------------------------------------- /web-frontend/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/bun.lockb -------------------------------------------------------------------------------- /web-frontend/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Footer.vue -------------------------------------------------------------------------------- /web-frontend/components/Landing/Contribute.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Landing/Contribute.vue -------------------------------------------------------------------------------- /web-frontend/components/Landing/FAQ/Accordion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Landing/FAQ/Accordion.vue -------------------------------------------------------------------------------- /web-frontend/components/Landing/FAQ/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Landing/FAQ/index.vue -------------------------------------------------------------------------------- /web-frontend/components/Landing/Feature/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Landing/Feature/Card.vue -------------------------------------------------------------------------------- /web-frontend/components/Landing/Feature/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Landing/Feature/Grid.vue -------------------------------------------------------------------------------- /web-frontend/components/Landing/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Landing/Hero.vue -------------------------------------------------------------------------------- /web-frontend/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/components/Navbar.vue -------------------------------------------------------------------------------- /web-frontend/composables/useSmoothScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/composables/useSmoothScroll.ts -------------------------------------------------------------------------------- /web-frontend/content/changelog/latest.md: -------------------------------------------------------------------------------- 1 | # Hello World! 2 | -------------------------------------------------------------------------------- /web-frontend/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/layouts/default.vue -------------------------------------------------------------------------------- /web-frontend/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/nuxt.config.ts -------------------------------------------------------------------------------- /web-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/package.json -------------------------------------------------------------------------------- /web-frontend/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/pages/index.vue -------------------------------------------------------------------------------- /web-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/public/favicon.ico -------------------------------------------------------------------------------- /web-frontend/public/img/hartexbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/public/img/hartexbanner.png -------------------------------------------------------------------------------- /web-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/tsconfig.json -------------------------------------------------------------------------------- /web-frontend/uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/web-frontend/uno.config.ts -------------------------------------------------------------------------------- /x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamHarTex/HarTex/HEAD/x.py --------------------------------------------------------------------------------