├── .cargo └── config.toml ├── .clippy.toml ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ └── suggestion.md ├── dependabot.yml └── workflows │ ├── docs.yml │ ├── loco-gen-ci.yml │ ├── loco-gen-deploy.yml │ ├── loco-new.yml │ ├── loco-rs-ci-sanity.yml │ └── loco-rs-ci.yml ├── .gitignore ├── .rustfmt.toml ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── DEVELOPMENT.md ├── LICENSE ├── README-pt_BR.md ├── README-zh_CN.md ├── README.es.md ├── README.fr.md ├── README.ja.md ├── README.ko.md ├── README.md ├── README.ru.md ├── SECURITY.md ├── docs-site ├── .gitignore ├── config.toml ├── content │ ├── _index.md │ ├── authors │ │ ├── _index.md │ │ ├── limpidcrypto.md │ │ └── team-loco.md │ ├── blog │ │ ├── _index.md │ │ ├── angular-frontend.md │ │ ├── axum-session.md │ │ ├── deploy-aws.md │ │ ├── frontend-website.md │ │ └── hello-world.md │ ├── casts │ │ ├── 001-dynamic-responses-and-content-types.md │ │ ├── 002-routes-and-prefixes.md │ │ ├── 003-scaffolding-crud-with-html.md │ │ ├── 004-creating-tasks.md │ │ ├── 005-testing-tasks.md │ │ ├── 006-mailers.md │ │ ├── 007-htmx.md │ │ └── _index.md │ ├── docs │ │ ├── _index.md │ │ ├── extras │ │ │ ├── _index.md │ │ │ ├── authentication.md │ │ │ ├── pluggability.md │ │ │ ├── upgrades.md │ │ │ └── websocket.md │ │ ├── getting-started │ │ │ ├── _index.md │ │ │ ├── axum-users.md │ │ │ ├── guide.md │ │ │ ├── starters.md │ │ │ └── tour │ │ │ │ ├── index.md │ │ │ │ └── tour.png │ │ ├── infrastructure │ │ │ ├── _index.md │ │ │ ├── cache.md │ │ │ ├── data.md │ │ │ ├── deployment.md │ │ │ └── storage.md │ │ ├── processing │ │ │ ├── _index.md │ │ │ ├── mailers.md │ │ │ ├── scheduler.md │ │ │ ├── task.md │ │ │ └── workers.md │ │ ├── resources │ │ │ ├── _index.md │ │ │ ├── around-the-web.md │ │ │ └── faq.md │ │ └── the-app │ │ │ ├── _index.md │ │ │ ├── controller.md │ │ │ ├── models.md │ │ │ ├── views.md │ │ │ └── your-project.md │ └── privacy-policy │ │ └── _index.md ├── package.json ├── pnpm-lock.yaml ├── static │ ├── ahrefs_f06cfb9c2671c1b7a5b6eec0d47a07719bd6d5a2240b829cad6a3f40684fa370 │ ├── apple-touch-icon.png │ ├── apple-touch-icon@x4.png │ ├── bench-db-q.svg │ ├── bench-no-db.svg │ ├── bg.svg │ ├── cloud-bg.svg │ ├── cloud.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── header.svg │ ├── icon.svg │ ├── js │ │ ├── main.js │ │ └── search.js │ ├── mountain-bg.svg │ ├── plugins │ │ └── elasticlunr.min.js │ ├── styles │ │ └── styles.css │ ├── syntax-theme-dark.css │ ├── syntax-theme-light.css │ └── top.svg ├── styles │ └── styles.css ├── tailwind.config.js ├── templates │ ├── 404.html │ ├── base.html │ ├── blog │ │ ├── atom.xml │ │ ├── page.html │ │ ├── rss.xml │ │ └── section.html │ ├── casts │ │ ├── page.html │ │ └── section.html │ ├── docs │ │ ├── page.html │ │ └── section.html │ ├── index.html │ ├── macros │ │ ├── docs-edit-page.html │ │ ├── docs-navigation.html │ │ ├── docs-sidebar.html │ │ ├── docs-toc.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── javascript.html │ │ ├── page-publish-metadata.html │ │ └── youtube.html │ ├── page.html │ ├── section.html │ ├── shortcodes │ │ └── get_env.html │ ├── taxonomy_list.html │ └── taxonomy_single.html └── translations │ └── tour-fr.md ├── loco-cli ├── .gitignore ├── .rustfmt.toml ├── Cargo.toml ├── README.md └── src │ ├── bin │ └── main.rs │ └── lib.rs ├── loco-gen ├── .gitattributes ├── Cargo.toml ├── src │ ├── controller.rs │ ├── infer.rs │ ├── lib.rs │ ├── mappings.json │ ├── migration.rs │ ├── model.rs │ ├── scaffold.rs │ ├── snapshots │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array!_big_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array!_bool].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array!_double].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array!_float].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array!_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array!_string].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array^_big_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array^_bool].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array^_double].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array^_float].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array^_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array^_string].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array_big_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array_bool].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array_double].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array_float].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_array_string].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_big_int!_big_int!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_big_int^_big_int^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_big_int_big_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_big_unsigned!_big_unsigned!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_big_unsigned^_big_unsigned^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_big_unsigned_big_unsigned].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_binary_len!_binary_len!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_binary_len^_binary_len^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_binary_len_binary_len].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_blob!_blob!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_blob^_blob^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_blob_blob].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_bool!_bool!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_bool_bool].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_date!_date!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_date^_date^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_date_date].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_date_time!_date_time!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_date_time^_date_time^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_date_time_date_time].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_decimal!_decimal!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_decimal^_decimal^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_decimal_decimal].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_decimal_len!_decimal_len!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_decimal_len^_decimal_len^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_decimal_len_decimal_len].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_double!_double!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_double^_double^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_double_double].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_float!_float!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_float^_float^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_float_float].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_int!_int!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_int^_int^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_int_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_json!_json!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_json_json].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb!_jsonb!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb^_jsonb^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb_jsonb].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_money!_money!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_money^_money^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_money_money].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_small_int!_small_int!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_small_int^_small_int^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_small_int_small_int].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_small_unsigned!_small_unsigned!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_small_unsigned^_small_unsigned^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_small_unsigned_small_unsigned].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_string!_string!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_string^_string^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_string_string].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_text!_text!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_text^_text^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_text_text].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_tstz!_tstz!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_tstz_tstz].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_unsigned!_unsigned!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_unsigned^_unsigned^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_unsigned_unsigned].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_uuid!_uuid!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_uuid^_uuid^].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_uuid_uuid].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_var_binary!_var_binary!].snap │ │ ├── loco_gen__tera_ext__tests__can_render_form_field_[form_var_binary^_var_binary^].snap │ │ └── loco_gen__tera_ext__tests__can_render_form_field_[form_var_binary_var_binary].snap │ ├── template.rs │ ├── templates │ │ ├── controller │ │ │ ├── api │ │ │ │ ├── controller.t │ │ │ │ └── test.t │ │ │ ├── html │ │ │ │ ├── controller.t │ │ │ │ └── view.t │ │ │ └── htmx │ │ │ │ ├── controller.t │ │ │ │ └── view.t │ │ ├── data │ │ │ ├── 0_mod.t │ │ │ ├── data.t │ │ │ ├── mod.t │ │ │ └── struct.t │ │ ├── deployment │ │ │ ├── docker │ │ │ │ ├── docker.t │ │ │ │ └── ignore.t │ │ │ ├── nginx │ │ │ │ └── nginx.t │ │ │ └── shuttle │ │ │ │ ├── config.t │ │ │ │ └── shuttle.t │ │ ├── mailer │ │ │ ├── html.t │ │ │ ├── mailer.t │ │ │ ├── subject.t │ │ │ └── text.t │ │ ├── migration │ │ │ ├── add_columns.t │ │ │ ├── add_references.t │ │ │ ├── empty.t │ │ │ ├── join_table.t │ │ │ └── remove_columns.t │ │ ├── model │ │ │ ├── model.t │ │ │ └── test.t │ │ ├── scaffold │ │ │ ├── api │ │ │ │ ├── controller.t │ │ │ │ └── test.t │ │ │ ├── html │ │ │ │ ├── base.t │ │ │ │ ├── controller.t │ │ │ │ ├── view.t │ │ │ │ ├── view_create.t │ │ │ │ ├── view_edit.t │ │ │ │ ├── view_list.t │ │ │ │ └── view_show.t │ │ │ └── htmx │ │ │ │ ├── base.t │ │ │ │ ├── controller.t │ │ │ │ ├── view.t │ │ │ │ ├── view_create.t │ │ │ │ ├── view_edit.t │ │ │ │ ├── view_list.t │ │ │ │ └── view_show.t │ │ ├── scheduler │ │ │ └── scheduler.t │ │ ├── task │ │ │ ├── task.t │ │ │ └── test.t │ │ └── worker │ │ │ ├── test.t │ │ │ └── worker.t │ ├── tera_ext.rs │ └── testutil.rs └── tests │ ├── db.rs │ ├── mod.rs │ ├── snapshots │ ├── db__migrations_flow_postgres.snap │ ├── db__migrations_flow_sqlite.snap │ ├── r#mod__db__migrations_flow_postgres.snap │ └── r#mod__db__migrations_flow_sqlite.snap │ └── templates │ ├── controller.rs │ ├── deployment.rs │ ├── mailer.rs │ ├── migration.rs │ ├── mod.rs │ ├── model.rs │ ├── scaffold.rs │ ├── scheduler.rs │ ├── snapshots │ ├── generate[controller_file]@Api_controller.snap │ ├── generate[controller_file]@Api_scaffold.snap │ ├── generate[controller_file]@Html_controller.snap │ ├── generate[controller_file]@Html_scaffold.snap │ ├── generate[controller_file]@Htmx_controller.snap │ ├── generate[controller_file]@Htmx_scaffold.snap │ ├── generate[controller_file]@scheduler.snap │ ├── generate[controller_file]@task.snap │ ├── generate[controller_file]@worker.snap │ ├── generate[docker_file_[0]_[false]]@deployment.snap │ ├── generate[docker_file_[0]_[true]]@deployment.snap │ ├── generate[docker_file_[2]_[false]]@deployment.snap │ ├── generate[docker_file_[2]_[true]]@deployment.snap │ ├── generate[html_t_file]@mailer.snap │ ├── generate[mailer_mod_rs]@mailer.snap │ ├── generate[migration_file]@Api_scaffold.snap │ ├── generate[migration_file]@Html_scaffold.snap │ ├── generate[migration_file]@Htmx_scaffold.snap │ ├── generate[migration_file]@add_column_migration.snap │ ├── generate[migration_file]@add_reference_migration.snap │ ├── generate[migration_file]@create_join_table_migration.snap │ ├── generate[migration_file]@create_join_table_without_tz_migration.snap │ ├── generate[migration_file]@create_table_migration.snap │ ├── generate[migration_file]@create_table_without_tz_migration.snap │ ├── generate[migration_file]@empty_migration.snap │ ├── generate[migration_file]@model.snap │ ├── generate[migration_file]@remove_columns_migration.snap │ ├── generate[nginx]@deployment.snap │ ├── generate[shuttle.rs]@deployment.snap │ ├── generate[subject_t_file]@mailer.snap │ ├── generate[test_model]@Api_scaffold.snap │ ├── generate[test_model]@Html_scaffold.snap │ ├── generate[test_model]@Htmx_scaffold.snap │ ├── generate[test_model]@model.snap │ ├── generate[tests_controller_mod_rs]@Api_controller.snap │ ├── generate[tests_task_file]@task.snap │ ├── generate[tests_worker_file]@worker.snap │ ├── generate[text_t_file]@mailer.snap │ ├── generate[views_[create]]@Html_scaffold.snap │ ├── generate[views_[create]]@Htmx_scaffold.snap │ ├── generate[views_[edit]]@Html_scaffold.snap │ ├── generate[views_[edit]]@Htmx_scaffold.snap │ ├── generate[views_[list]]@Html_scaffold.snap │ ├── generate[views_[list]]@Htmx_scaffold.snap │ ├── generate[views_[show]]@Html_scaffold.snap │ ├── generate[views_[show]]@Htmx_scaffold.snap │ ├── generate[views_rs]@Html_scaffold.snap │ ├── generate[views_rs]@Htmx_scaffold.snap │ ├── generate_result@add_column_migration.snap │ ├── generate_result@add_reference_migration.snap │ ├── generate_result@create_join_table_migration.snap │ ├── generate_result@create_join_table_without_tz_migration.snap │ ├── generate_result@create_table_migration.snap │ ├── generate_result@create_table_without_tz_migration.snap │ ├── generate_result@empty_migration.snap │ ├── generate_result@remove_columns_migration.snap │ ├── generate_results@Api_controller.snap │ ├── generate_results@Api_scaffold.snap │ ├── generate_results@Html_controller.snap │ ├── generate_results@Html_scaffold.snap │ ├── generate_results@Htmx_controller.snap │ ├── generate_results@Htmx_scaffold.snap │ ├── inject[.config_toml]@deployment.snap │ ├── inject[app_rs]@Api_controller.snap │ ├── inject[app_rs]@Api_scaffold.snap │ ├── inject[app_rs]@Html_controller.snap │ ├── inject[app_rs]@Html_scaffold.snap │ ├── inject[app_rs]@Htmx_controller.snap │ ├── inject[app_rs]@Htmx_scaffold.snap │ ├── inject[app_rs]@task.snap │ ├── inject[app_rs]@worker.snap │ ├── inject[cargo_toml]@deployment.snap │ ├── inject[controller_mod_rs]@Api_controller.snap │ ├── inject[controller_mod_rs]@Api_scaffold.snap │ ├── inject[controller_mod_rs]@Html_controller.snap │ ├── inject[controller_mod_rs]@Html_scaffold.snap │ ├── inject[controller_mod_rs]@Htmx_controller.snap │ ├── inject[controller_mod_rs]@Htmx_scaffold.snap │ ├── inject[mailer_mod_rs]@mailer.snap │ ├── inject[migration_lib]@Api_scaffold.snap │ ├── inject[migration_lib]@Html_scaffold.snap │ ├── inject[migration_lib]@Htmx_scaffold.snap │ ├── inject[migration_lib]@add_column_migration.snap │ ├── inject[migration_lib]@add_reference_migration.snap │ ├── inject[migration_lib]@create_join_table_migration.snap │ ├── inject[migration_lib]@create_join_table_without_tz_migration.snap │ ├── inject[migration_lib]@create_table_migration.snap │ ├── inject[migration_lib]@create_table_without_tz_migration.snap │ ├── inject[migration_lib]@empty_migration.snap │ ├── inject[migration_lib]@model.snap │ ├── inject[migration_lib]@remove_columns_migration.snap │ ├── inject[task_mod_rs]@task.snap │ ├── inject[test_mod]@Api_scaffold.snap │ ├── inject[test_mod]@Html_scaffold.snap │ ├── inject[test_mod]@Htmx_scaffold.snap │ ├── inject[test_mod]@model.snap │ ├── inject[tests_controller_mod_rs]@Api_controller.snap │ ├── inject[tests_task_mod]@task.snap │ ├── inject[tests_worker_mod]@worker.snap │ ├── inject[views_[GET]]@Html_controller.snap │ ├── inject[views_[GET]]@Htmx_controller.snap │ ├── inject[views_[POST]]@Html_controller.snap │ ├── inject[views_[POST]]@Htmx_controller.snap │ ├── inject[views_mod_rs]@Html_scaffold.snap │ ├── inject[views_mod_rs]@Htmx_scaffold.snap │ └── inject[worker_mod_rs]@worker.snap │ ├── task.rs │ ├── utils.rs │ └── worker.rs ├── loco-new ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── base_template │ ├── .cargo │ │ └── config.toml.t │ ├── .github │ │ └── workflows │ │ │ └── ci.yaml.t │ ├── .gitignore │ ├── .rustfmt.toml │ ├── Cargo.toml.t │ ├── README.md │ ├── assets │ │ ├── i18n │ │ │ ├── de-DE │ │ │ │ └── main.ftl │ │ │ ├── en-US │ │ │ │ └── main.ftl │ │ │ └── shared.ftl │ │ ├── static │ │ │ ├── 404.html │ │ │ └── image.png │ │ └── views │ │ │ └── home │ │ │ └── hello.html │ ├── config │ │ ├── development.yaml.t │ │ ├── production.yaml │ │ └── test.yaml.t │ ├── examples │ │ └── playground.rs.t │ ├── frontend │ │ ├── .gitignore │ │ ├── README.md │ │ ├── biome.json │ │ ├── package.json │ │ ├── rsbuild.config.ts │ │ ├── src │ │ │ ├── LocoSplash.tsx │ │ │ ├── assets │ │ │ │ └── favicon.ico │ │ │ ├── env.d.ts │ │ │ ├── index.css │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── migration │ │ ├── Cargo.toml.t │ │ └── src │ │ │ ├── lib.rs.t │ │ │ └── m20220101_000001_users.rs │ ├── src │ │ ├── app.rs.t │ │ ├── bin │ │ │ ├── main.rs.t │ │ │ └── tool.rs.t │ │ ├── controllers │ │ │ ├── auth.rs │ │ │ ├── home.rs │ │ │ └── mod.rs.t │ │ ├── data │ │ │ └── mod.rs.t │ │ ├── fixtures │ │ │ └── users.yaml │ │ ├── initializers │ │ │ ├── mod.rs.t │ │ │ └── view_engine.rs │ │ ├── lib.rs.t │ │ ├── mailers │ │ │ ├── auth.rs │ │ │ ├── auth │ │ │ │ ├── forgot │ │ │ │ │ ├── html.t │ │ │ │ │ ├── subject.t │ │ │ │ │ └── text.t │ │ │ │ ├── magic_link │ │ │ │ │ ├── html.t │ │ │ │ │ ├── subject.t │ │ │ │ │ └── text.t │ │ │ │ └── welcome │ │ │ │ │ ├── html.t │ │ │ │ │ ├── subject.t │ │ │ │ │ └── text.t │ │ │ └── mod.rs │ │ ├── models │ │ │ ├── _entities │ │ │ │ ├── mod.rs.t │ │ │ │ ├── prelude.rs.t │ │ │ │ └── users.rs │ │ │ ├── mod.rs.t │ │ │ └── users.rs │ │ ├── tasks │ │ │ └── mod.rs.t │ │ ├── views │ │ │ ├── auth.rs │ │ │ ├── home.rs │ │ │ └── mod.rs.t │ │ └── workers │ │ │ ├── downloader.rs │ │ │ └── mod.rs.t │ └── tests │ │ ├── mod.rs.t │ │ ├── models │ │ ├── mod.rs.t │ │ ├── snapshots │ │ │ ├── can_create_with_password@users.snap │ │ │ ├── can_find_by_email@users-2.snap │ │ │ ├── can_find_by_email@users.snap │ │ │ ├── can_find_by_pid@users-2.snap │ │ │ ├── can_find_by_pid@users.snap │ │ │ ├── can_validate_model@users.snap │ │ │ └── handle_create_with_password_with_duplicate@users.snap │ │ └── users.rs.t │ │ ├── requests │ │ ├── auth.rs.t │ │ ├── home.rs.t │ │ ├── mod.rs.t │ │ ├── prepare_data.rs.t │ │ └── snapshots │ │ │ ├── can_auth_with_magic_link@auth_request.snap │ │ │ ├── can_get_current_user@auth_request.snap │ │ │ ├── can_login_without_verify@auth_request.snap │ │ │ ├── can_register@auth_request.snap │ │ │ ├── can_reset_password@auth_request.snap │ │ │ ├── login_with_invalid_password@auth_request.snap │ │ │ ├── login_with_valid_password@auth_request.snap │ │ │ └── resend_verification_user@auth_request.snap │ │ ├── tasks │ │ └── mod.rs.t │ │ └── workers │ │ └── mod.rs ├── devnew.sh ├── setup.rhai ├── src │ ├── bin │ │ └── main.rs │ ├── generator │ │ ├── executer │ │ │ ├── filesystem.rs │ │ │ ├── inmem.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ └── template.rs │ ├── lib.rs │ ├── settings.rs │ └── wizard.rs └── tests │ ├── assertion │ ├── mod.rs │ ├── string.rs │ ├── toml.rs │ └── yaml.rs │ ├── mod.rs │ ├── templates │ ├── asset.rs │ ├── auth.rs │ ├── background.rs │ ├── db.rs │ ├── features.rs │ ├── initializers.rs │ ├── mailer.rs │ ├── mod.rs │ ├── module_name.rs │ └── snapshots │ │ ├── r#mod__templates__asset__cargo_dependencies_Clientside.snap │ │ ├── r#mod__templates__asset__cargo_dependencies_None.snap │ │ ├── r#mod__templates__asset__cargo_dependencies_Serverside.snap │ │ ├── r#mod__templates__auth__src_app_rs_auth_false_None.snap │ │ ├── r#mod__templates__auth__src_app_rs_auth_false_Sqlite.snap │ │ ├── r#mod__templates__auth__src_app_rs_auth_true_None.snap │ │ ├── r#mod__templates__auth__src_app_rs_auth_true_Sqlite.snap │ │ ├── r#mod__templates__background__src_app_rs_Async.snap │ │ ├── r#mod__templates__background__src_app_rs_Blocking.snap │ │ ├── r#mod__templates__background__src_app_rs_None.snap │ │ ├── r#mod__templates__background__src_app_rs_Queue.snap │ │ ├── r#mod__templates__db__cargo_dependencies_None.snap │ │ ├── r#mod__templates__db__cargo_dependencies_Postgres.snap │ │ ├── r#mod__templates__db__cargo_dependencies_Sqlite.snap │ │ ├── r#mod__templates__db__config_development_yaml_config_database_Postgres.snap │ │ ├── r#mod__templates__db__config_development_yaml_config_database_Sqlite.snap │ │ ├── r#mod__templates__db__config_test_yaml_config_database_Postgres.snap │ │ ├── r#mod__templates__db__config_test_yaml_config_database_Sqlite.snap │ │ ├── r#mod__templates__db__src_app_rs_None.snap │ │ ├── r#mod__templates__db__src_app_rs_Postgres.snap │ │ ├── r#mod__templates__db__src_app_rs_Sqlite.snap │ │ ├── r#mod__templates__initializers__src_app_rs_with_initializers.snap │ │ ├── r#mod__templates__initializers__src_app_rs_without_initializers.snap │ │ ├── r#mod__templates__mailer__cargo_dependencies_mailer_false.snap │ │ └── r#mod__templates__mailer__cargo_dependencies_mailer_true.snap │ └── wizard │ ├── mod.rs │ └── new.rs ├── media └── image.png ├── snipdoc.yml ├── src ├── app.rs ├── auth │ ├── jwt.rs │ ├── mod.rs │ └── snapshots │ │ ├── loco_rs__auth__jwt__tests__token expired.snap │ │ ├── loco_rs__auth__jwt__tests__valid token and custom array claims.snap │ │ ├── loco_rs__auth__jwt__tests__valid token and custom boolean claims.snap │ │ ├── loco_rs__auth__jwt__tests__valid token and custom nested array claims.snap │ │ ├── loco_rs__auth__jwt__tests__valid token and custom nested claims.snap │ │ ├── loco_rs__auth__jwt__tests__valid token and custom number claims.snap │ │ ├── loco_rs__auth__jwt__tests__valid token and custom string claims.snap │ │ └── loco_rs__auth__jwt__tests__valid token.snap ├── banner.rs ├── bgworker │ ├── mod.rs │ ├── pg.rs │ ├── redis.rs │ ├── snapshots │ │ ├── loco_rs__bgworker__pg__tests__can_complete_job_with_interval.snap │ │ ├── loco_rs__bgworker__pg__tests__can_dequeue.snap │ │ ├── loco_rs__bgworker__pg__tests__can_enqueue.snap │ │ ├── loco_rs__bgworker__pg__tests__can_fail_job.snap │ │ ├── loco_rs__bgworker__pg__tests__can_initialize_database.snap │ │ ├── loco_rs__bgworker__sqlt__tests__can_complete_job_with_interval.snap │ │ ├── loco_rs__bgworker__sqlt__tests__can_dequeue.snap │ │ ├── loco_rs__bgworker__sqlt__tests__can_enqueue.snap │ │ ├── loco_rs__bgworker__sqlt__tests__can_fail_job.snap │ │ ├── loco_rs__bgworker__sqlt__tests__sqlt_loco_queue.snap │ │ ├── loco_rs__bgworker__sqlt__tests__sqlt_loco_queue_lock.snap │ │ └── loco_rs__bgworker__tests__can_dump_jobs.snap │ └── sqlt.rs ├── boot.rs ├── cache │ ├── drivers │ │ ├── inmem.rs │ │ ├── mod.rs │ │ ├── null.rs │ │ └── redis.rs │ └── mod.rs ├── cargo_config.rs ├── cli.rs ├── config.rs ├── controller │ ├── app_routes.rs │ ├── backtrace.rs │ ├── describe.rs │ ├── extractor │ │ ├── auth.rs │ │ ├── mod.rs │ │ ├── shared_store.rs │ │ ├── snapshots │ │ │ ├── loco_rs__controller__extractor__auth__tests__extract_from_bearer.snap │ │ │ ├── loco_rs__controller__extractor__auth__tests__extract_from_cookie.snap │ │ │ ├── loco_rs__controller__extractor__auth__tests__extract_from_default.snap │ │ │ ├── loco_rs__controller__extractor__auth__tests__extract_from_multiple_locations.snap │ │ │ └── loco_rs__controller__extractor__auth__tests__extract_from_query.snap │ │ └── validate.rs │ ├── format.rs │ ├── middleware │ │ ├── _archive │ │ │ └── content_etag.rs │ │ ├── catch_panic.rs │ │ ├── compression.rs │ │ ├── cors.rs │ │ ├── etag.rs │ │ ├── fallback.html │ │ ├── fallback.rs │ │ ├── format.rs │ │ ├── limit_payload.rs │ │ ├── logger.rs │ │ ├── mod.rs │ │ ├── powered_by.rs │ │ ├── remote_ip.rs │ │ ├── request_id.rs │ │ ├── secure_headers.json │ │ ├── secure_headers.rs │ │ ├── snapshots │ │ │ ├── loco_rs__controller__middleware__cors__tests__cors_OPTIONS_[allow_origins].snap │ │ │ ├── loco_rs__controller__middleware__cors__tests__cors_[default].snap │ │ │ ├── loco_rs__controller__middleware__cors__tests__cors_[with_allow_headers].snap │ │ │ ├── loco_rs__controller__middleware__cors__tests__cors_[with_allow_methods].snap │ │ │ ├── loco_rs__controller__middleware__cors__tests__cors_[with_expose_headers].snap │ │ │ ├── loco_rs__controller__middleware__cors__tests__cors_[with_max_age].snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing-2.snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing-3.snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing-4.snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing-5.snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing-6.snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing-7.snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing-8.snap │ │ │ ├── loco_rs__controller__middleware__remote_ip__tests__parsing.snap │ │ │ ├── loco_rs__controller__middleware__request_id__tests__create_or_fetch_request_id-2.snap │ │ │ ├── loco_rs__controller__middleware__request_id__tests__create_or_fetch_request_id-3.snap │ │ │ ├── loco_rs__controller__middleware__request_id__tests__create_or_fetch_request_id-4.snap │ │ │ ├── loco_rs__controller__middleware__request_id__tests__create_or_fetch_request_id-5.snap │ │ │ ├── loco_rs__controller__middleware__request_id__tests__create_or_fetch_request_id.snap │ │ │ ├── loco_rs__controller__middleware__secure_headers__tests__can_override_headers.snap │ │ │ ├── loco_rs__controller__middleware__secure_headers__tests__can_set_headers.snap │ │ │ └── loco_rs__controller__middleware__secure_headers__tests__default_is_github_preset.snap │ │ ├── static_assets.rs │ │ ├── static_assets_embedded.rs │ │ └── timeout.rs │ ├── mod.rs │ ├── monitoring.rs │ ├── routes.rs │ ├── snapshots │ │ ├── loco_rs__controller__app_routes__tests__[[slash]].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]_health].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]_ping].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]_readiness].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]api[slash]loco-rs].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]api[slash]loco].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]api[slash]v1[slash]notes].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]api[slash]v1[slash]users].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]multiple1].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]multiple2].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]multiple3].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]normalizer[slash]loco[slash]rs].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]normalizer[slash]multiple-end].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]normalizer[slash]multiple-start].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]normalizer[slash]no-slash].snap │ │ ├── loco_rs__controller__app_routes__tests__[[slash]normalizer].snap │ │ ├── loco_rs__controller__format__tests__builder_cookies_response.snap │ │ ├── loco_rs__controller__format__tests__builder_empty_response.snap │ │ ├── loco_rs__controller__format__tests__builder_html_response.snap │ │ ├── loco_rs__controller__format__tests__builder_json_response.snap │ │ ├── loco_rs__controller__format__tests__builder_redirect_response.snap │ │ ├── loco_rs__controller__format__tests__builder_redirect_with_custom_header_response.snap │ │ ├── loco_rs__controller__format__tests__builder_template_response.snap │ │ ├── loco_rs__controller__format__tests__builder_text_response.snap │ │ ├── loco_rs__controller__format__tests__builder_view_response-2.snap │ │ ├── loco_rs__controller__format__tests__builder_view_response.snap │ │ ├── loco_rs__controller__format__tests__empty_json_response_format.snap │ │ ├── loco_rs__controller__format__tests__empty_response_format.snap │ │ ├── loco_rs__controller__format__tests__html_response_format.snap │ │ ├── loco_rs__controller__format__tests__json_response_format.snap │ │ ├── loco_rs__controller__format__tests__redirect_response.snap │ │ ├── loco_rs__controller__format__tests__template_response.snap │ │ ├── loco_rs__controller__format__tests__text_response_format.snap │ │ ├── loco_rs__controller__format__tests__view_response-2.snap │ │ ├── loco_rs__controller__format__tests__view_response.snap │ │ └── loco_rs__controller__format__tests__yaml_response_format.snap │ └── views │ │ ├── engine.rs │ │ ├── engine_embedded.rs │ │ ├── mod.rs │ │ ├── pagination.rs │ │ └── tera_builtins │ │ ├── filters │ │ ├── mod.rs │ │ └── number.rs │ │ └── mod.rs ├── data.rs ├── db.rs ├── depcheck.rs ├── doctor.rs ├── env_vars.rs ├── environment.rs ├── errors.rs ├── hash.rs ├── initializers │ ├── extra_db.rs │ ├── mod.rs │ └── multi_db.rs ├── lib.rs ├── logger.rs ├── mailer │ ├── email_sender.rs │ ├── mod.rs │ ├── snapshots │ │ ├── loco_rs__mailer__email_sender__tests__can_send_email.snap │ │ └── loco_rs__mailer__template__tests__can_render_template.snap │ └── template.rs ├── model │ ├── mod.rs │ └── query │ │ ├── dsl │ │ ├── date_range.rs │ │ └── mod.rs │ │ ├── mod.rs │ │ └── paginate │ │ └── mod.rs ├── prelude.rs ├── scheduler.rs ├── schema.rs ├── snapshots │ ├── loco_rs__auth__tests__token expired.snap │ ├── loco_rs__auth__tests__valid token.snap │ ├── loco_rs__scheduler__tests__can_display_scheduler.snap │ ├── loco_rs__scheduler__tests__can_prepare_command_[shell].snap │ ├── loco_rs__scheduler__tests__can_prepare_command_[task].snap │ ├── loco_rs__validation__tests__struct-[foo-bar].snap │ ├── loco_rs__validation__tests__struct-[foo].snap │ ├── loco_rs__worker__tests__default_custom_queues-2.snap │ ├── loco_rs__worker__tests__default_custom_queues-3.snap │ └── loco_rs__worker__tests__default_custom_queues.snap ├── storage │ ├── contents.rs │ ├── drivers │ │ ├── aws.rs │ │ ├── azure.rs │ │ ├── gcp.rs │ │ ├── local.rs │ │ ├── mem.rs │ │ ├── mod.rs │ │ ├── null.rs │ │ └── opendal_adapter.rs │ ├── mod.rs │ ├── strategies │ │ ├── backup.rs │ │ ├── mirror.rs │ │ ├── mod.rs │ │ └── single.rs │ └── stream.rs ├── task.rs ├── tera.rs ├── testing │ ├── db.rs │ ├── mod.rs │ ├── prelude.rs │ ├── redaction.rs │ ├── request.rs │ └── selector.rs ├── tests_cfg │ ├── app.rs │ ├── config.rs │ ├── controllers │ │ ├── auth.rs │ │ ├── home.rs │ │ └── mod.rs │ ├── db.rs │ ├── mod.rs │ ├── postgres.rs │ ├── queue.rs │ ├── redis.rs │ └── task.rs └── validation.rs ├── tests ├── build_scripts │ ├── embedded_assets.rs │ ├── mod.rs │ └── snapshots │ │ ├── r#mod__build_scripts__embedded_assets__build_static_assets_static.snap │ │ ├── r#mod__build_scripts__embedded_assets__build_static_assets_templates.snap │ │ ├── r#mod__build_scripts__embedded_assets__collected_all_files.snap │ │ ├── r#mod__build_scripts__embedded_assets__collected_css_files.snap │ │ ├── r#mod__build_scripts__embedded_assets__complex_template_inheritance.snap │ │ ├── r#mod__build_scripts__embedded_assets__discovered_directories.snap │ │ ├── r#mod__build_scripts__embedded_assets__empty_static_assets_rs.snap │ │ ├── r#mod__build_scripts__embedded_assets__empty_templates_rs.snap │ │ ├── r#mod__build_scripts__embedded_assets__static_assets_rs.snap │ │ ├── r#mod__build_scripts__embedded_assets__template_inheritance.snap │ │ └── r#mod__build_scripts__embedded_assets__view_templates_rs.snap ├── controller │ ├── extractor │ │ ├── auth │ │ │ ├── api_token.rs │ │ │ ├── jwt.rs │ │ │ ├── jwt_with_user.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── shared_store.rs │ │ └── validate.rs │ ├── into_response.rs │ ├── middlewares.rs │ ├── mod.rs │ └── snapshots │ │ ├── cors_[default]@middlewares.snap │ │ ├── cors_[disabled]@middlewares.snap │ │ ├── cors_[with_allow_headers]@middlewares.snap │ │ ├── cors_[with_allow_methods]@middlewares.snap │ │ ├── cors_[with_max_age]@middlewares.snap │ │ ├── panic@middlewares.snap │ │ ├── secure_headers_[empty]_overrides[none]@middlewares.snap │ │ ├── secure_headers_[github]_overrides[Content-Security-Policy]@middlewares.snap │ │ └── secure_headers_[none]_overrides[none]@middlewares.snap ├── fixtures │ ├── email_template │ │ └── test │ │ │ ├── html.t │ │ │ ├── subject.t │ │ │ └── text.t │ └── queue │ │ └── jobs.yaml ├── infra_cfg │ ├── mod.rs │ └── server.rs └── mod.rs └── xtask ├── .rustfmt.toml ├── Cargo.lock ├── Cargo.toml ├── README.md └── src ├── bin └── main.rs ├── bump_version.rs ├── ci.rs ├── errors.rs ├── lib.rs ├── out.rs ├── prompt.rs ├── utils.rs └── versions.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.clippy.toml: -------------------------------------------------------------------------------- 1 | cognitive-complexity-threshold = 40 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: loco-rs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/ISSUE_TEMPLATE/suggestion.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/loco-gen-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/workflows/loco-gen-ci.yml -------------------------------------------------------------------------------- /.github/workflows/loco-gen-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/workflows/loco-gen-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/loco-new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/workflows/loco-new.yml -------------------------------------------------------------------------------- /.github/workflows/loco-rs-ci-sanity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/workflows/loco-rs-ci-sanity.yml -------------------------------------------------------------------------------- /.github/workflows/loco-rs-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.github/workflows/loco-rs-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "rust-analyzer.showUnlinkedFileNotification": false 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/Cargo.toml -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/LICENSE -------------------------------------------------------------------------------- /README-pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README-pt_BR.md -------------------------------------------------------------------------------- /README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README-zh_CN.md -------------------------------------------------------------------------------- /README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README.es.md -------------------------------------------------------------------------------- /README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README.fr.md -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/README.ru.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs-site/.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | node_modules/ -------------------------------------------------------------------------------- /docs-site/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/config.toml -------------------------------------------------------------------------------- /docs-site/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/_index.md -------------------------------------------------------------------------------- /docs-site/content/authors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/authors/_index.md -------------------------------------------------------------------------------- /docs-site/content/authors/limpidcrypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/authors/limpidcrypto.md -------------------------------------------------------------------------------- /docs-site/content/authors/team-loco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/authors/team-loco.md -------------------------------------------------------------------------------- /docs-site/content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/blog/_index.md -------------------------------------------------------------------------------- /docs-site/content/blog/angular-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/blog/angular-frontend.md -------------------------------------------------------------------------------- /docs-site/content/blog/axum-session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/blog/axum-session.md -------------------------------------------------------------------------------- /docs-site/content/blog/deploy-aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/blog/deploy-aws.md -------------------------------------------------------------------------------- /docs-site/content/blog/frontend-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/blog/frontend-website.md -------------------------------------------------------------------------------- /docs-site/content/blog/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/blog/hello-world.md -------------------------------------------------------------------------------- /docs-site/content/casts/001-dynamic-responses-and-content-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/001-dynamic-responses-and-content-types.md -------------------------------------------------------------------------------- /docs-site/content/casts/002-routes-and-prefixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/002-routes-and-prefixes.md -------------------------------------------------------------------------------- /docs-site/content/casts/003-scaffolding-crud-with-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/003-scaffolding-crud-with-html.md -------------------------------------------------------------------------------- /docs-site/content/casts/004-creating-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/004-creating-tasks.md -------------------------------------------------------------------------------- /docs-site/content/casts/005-testing-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/005-testing-tasks.md -------------------------------------------------------------------------------- /docs-site/content/casts/006-mailers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/006-mailers.md -------------------------------------------------------------------------------- /docs-site/content/casts/007-htmx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/007-htmx.md -------------------------------------------------------------------------------- /docs-site/content/casts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/casts/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/extras/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/extras/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/extras/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/extras/authentication.md -------------------------------------------------------------------------------- /docs-site/content/docs/extras/pluggability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/extras/pluggability.md -------------------------------------------------------------------------------- /docs-site/content/docs/extras/upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/extras/upgrades.md -------------------------------------------------------------------------------- /docs-site/content/docs/extras/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/extras/websocket.md -------------------------------------------------------------------------------- /docs-site/content/docs/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/getting-started/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/getting-started/axum-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/getting-started/axum-users.md -------------------------------------------------------------------------------- /docs-site/content/docs/getting-started/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/getting-started/guide.md -------------------------------------------------------------------------------- /docs-site/content/docs/getting-started/starters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/getting-started/starters.md -------------------------------------------------------------------------------- /docs-site/content/docs/getting-started/tour/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/getting-started/tour/index.md -------------------------------------------------------------------------------- /docs-site/content/docs/getting-started/tour/tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/getting-started/tour/tour.png -------------------------------------------------------------------------------- /docs-site/content/docs/infrastructure/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/infrastructure/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/infrastructure/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/infrastructure/cache.md -------------------------------------------------------------------------------- /docs-site/content/docs/infrastructure/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/infrastructure/data.md -------------------------------------------------------------------------------- /docs-site/content/docs/infrastructure/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/infrastructure/deployment.md -------------------------------------------------------------------------------- /docs-site/content/docs/infrastructure/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/infrastructure/storage.md -------------------------------------------------------------------------------- /docs-site/content/docs/processing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/processing/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/processing/mailers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/processing/mailers.md -------------------------------------------------------------------------------- /docs-site/content/docs/processing/scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/processing/scheduler.md -------------------------------------------------------------------------------- /docs-site/content/docs/processing/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/processing/task.md -------------------------------------------------------------------------------- /docs-site/content/docs/processing/workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/processing/workers.md -------------------------------------------------------------------------------- /docs-site/content/docs/resources/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/resources/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/resources/around-the-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/resources/around-the-web.md -------------------------------------------------------------------------------- /docs-site/content/docs/resources/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/resources/faq.md -------------------------------------------------------------------------------- /docs-site/content/docs/the-app/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/the-app/_index.md -------------------------------------------------------------------------------- /docs-site/content/docs/the-app/controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/the-app/controller.md -------------------------------------------------------------------------------- /docs-site/content/docs/the-app/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/the-app/models.md -------------------------------------------------------------------------------- /docs-site/content/docs/the-app/views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/the-app/views.md -------------------------------------------------------------------------------- /docs-site/content/docs/the-app/your-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/docs/the-app/your-project.md -------------------------------------------------------------------------------- /docs-site/content/privacy-policy/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/content/privacy-policy/_index.md -------------------------------------------------------------------------------- /docs-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/package.json -------------------------------------------------------------------------------- /docs-site/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs-site/static/ahrefs_f06cfb9c2671c1b7a5b6eec0d47a07719bd6d5a2240b829cad6a3f40684fa370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/ahrefs_f06cfb9c2671c1b7a5b6eec0d47a07719bd6d5a2240b829cad6a3f40684fa370 -------------------------------------------------------------------------------- /docs-site/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/apple-touch-icon.png -------------------------------------------------------------------------------- /docs-site/static/apple-touch-icon@x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/apple-touch-icon@x4.png -------------------------------------------------------------------------------- /docs-site/static/bench-db-q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/bench-db-q.svg -------------------------------------------------------------------------------- /docs-site/static/bench-no-db.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/bench-no-db.svg -------------------------------------------------------------------------------- /docs-site/static/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/bg.svg -------------------------------------------------------------------------------- /docs-site/static/cloud-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/cloud-bg.svg -------------------------------------------------------------------------------- /docs-site/static/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/cloud.svg -------------------------------------------------------------------------------- /docs-site/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/favicon-16x16.png -------------------------------------------------------------------------------- /docs-site/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/favicon-32x32.png -------------------------------------------------------------------------------- /docs-site/static/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/header.svg -------------------------------------------------------------------------------- /docs-site/static/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/icon.svg -------------------------------------------------------------------------------- /docs-site/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/js/main.js -------------------------------------------------------------------------------- /docs-site/static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/js/search.js -------------------------------------------------------------------------------- /docs-site/static/mountain-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/mountain-bg.svg -------------------------------------------------------------------------------- /docs-site/static/plugins/elasticlunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/plugins/elasticlunr.min.js -------------------------------------------------------------------------------- /docs-site/static/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/styles/styles.css -------------------------------------------------------------------------------- /docs-site/static/syntax-theme-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/syntax-theme-dark.css -------------------------------------------------------------------------------- /docs-site/static/syntax-theme-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/syntax-theme-light.css -------------------------------------------------------------------------------- /docs-site/static/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/static/top.svg -------------------------------------------------------------------------------- /docs-site/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/styles/styles.css -------------------------------------------------------------------------------- /docs-site/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/tailwind.config.js -------------------------------------------------------------------------------- /docs-site/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/404.html -------------------------------------------------------------------------------- /docs-site/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/base.html -------------------------------------------------------------------------------- /docs-site/templates/blog/atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/blog/atom.xml -------------------------------------------------------------------------------- /docs-site/templates/blog/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/blog/page.html -------------------------------------------------------------------------------- /docs-site/templates/blog/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/blog/rss.xml -------------------------------------------------------------------------------- /docs-site/templates/blog/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/blog/section.html -------------------------------------------------------------------------------- /docs-site/templates/casts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/casts/page.html -------------------------------------------------------------------------------- /docs-site/templates/casts/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/casts/section.html -------------------------------------------------------------------------------- /docs-site/templates/docs/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/docs/page.html -------------------------------------------------------------------------------- /docs-site/templates/docs/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/docs/section.html -------------------------------------------------------------------------------- /docs-site/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/index.html -------------------------------------------------------------------------------- /docs-site/templates/macros/docs-edit-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/docs-edit-page.html -------------------------------------------------------------------------------- /docs-site/templates/macros/docs-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/docs-navigation.html -------------------------------------------------------------------------------- /docs-site/templates/macros/docs-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/docs-sidebar.html -------------------------------------------------------------------------------- /docs-site/templates/macros/docs-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/docs-toc.html -------------------------------------------------------------------------------- /docs-site/templates/macros/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/footer.html -------------------------------------------------------------------------------- /docs-site/templates/macros/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/header.html -------------------------------------------------------------------------------- /docs-site/templates/macros/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/javascript.html -------------------------------------------------------------------------------- /docs-site/templates/macros/page-publish-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/page-publish-metadata.html -------------------------------------------------------------------------------- /docs-site/templates/macros/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/macros/youtube.html -------------------------------------------------------------------------------- /docs-site/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/page.html -------------------------------------------------------------------------------- /docs-site/templates/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/templates/section.html -------------------------------------------------------------------------------- /docs-site/templates/shortcodes/get_env.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-site/templates/taxonomy_list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-site/templates/taxonomy_single.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-site/translations/tour-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/docs-site/translations/tour-fr.md -------------------------------------------------------------------------------- /loco-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-cli/.gitignore -------------------------------------------------------------------------------- /loco-cli/.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-cli/.rustfmt.toml -------------------------------------------------------------------------------- /loco-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-cli/Cargo.toml -------------------------------------------------------------------------------- /loco-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-cli/README.md -------------------------------------------------------------------------------- /loco-cli/src/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-cli/src/bin/main.rs -------------------------------------------------------------------------------- /loco-cli/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /loco-gen/.gitattributes: -------------------------------------------------------------------------------- 1 | src/templates/* text eol=lf 2 | -------------------------------------------------------------------------------- /loco-gen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/Cargo.toml -------------------------------------------------------------------------------- /loco-gen/src/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/controller.rs -------------------------------------------------------------------------------- /loco-gen/src/infer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/infer.rs -------------------------------------------------------------------------------- /loco-gen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/lib.rs -------------------------------------------------------------------------------- /loco-gen/src/mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/mappings.json -------------------------------------------------------------------------------- /loco-gen/src/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/migration.rs -------------------------------------------------------------------------------- /loco-gen/src/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/model.rs -------------------------------------------------------------------------------- /loco-gen/src/scaffold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/scaffold.rs -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_big_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_big_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_bool].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_bool].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_double].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_double].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_float].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_float].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_string].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array!_string].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_big_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_big_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_bool].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_bool].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_double].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_double].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_float].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_float].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_string].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array^_string].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_big_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_big_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_bool].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_bool].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_double].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_double].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_float].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_float].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_string].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_array_string].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_big_int!_big_int!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_big_int!_big_int!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_big_int^_big_int^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_big_int^_big_int^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_big_int_big_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_big_int_big_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_binary_len_binary_len].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_binary_len_binary_len].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_blob!_blob!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_blob!_blob!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_blob^_blob^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_blob^_blob^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_blob_blob].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_blob_blob].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_bool!_bool!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_bool!_bool!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_bool_bool].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_bool_bool].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date!_date!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date!_date!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date^_date^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date^_date^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_date].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_date].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_time!_date_time!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_time!_date_time!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_time^_date_time^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_time^_date_time^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_time_date_time].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_date_time_date_time].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_decimal!_decimal!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_decimal!_decimal!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_decimal^_decimal^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_decimal^_decimal^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_decimal_decimal].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_decimal_decimal].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_double!_double!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_double!_double!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_double^_double^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_double^_double^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_double_double].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_double_double].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_float!_float!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_float!_float!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_float^_float^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_float^_float^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_float_float].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_float_float].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_int!_int!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_int!_int!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_int^_int^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_int^_int^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_int_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_int_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_json!_json!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_json!_json!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_json_json].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_json_json].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb!_jsonb!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb!_jsonb!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb^_jsonb^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb^_jsonb^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb_jsonb].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_jsonb_jsonb].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_money!_money!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_money!_money!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_money^_money^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_money^_money^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_money_money].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_money_money].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_small_int!_small_int!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_small_int!_small_int!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_small_int^_small_int^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_small_int^_small_int^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_small_int_small_int].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_small_int_small_int].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_string!_string!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_string!_string!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_string^_string^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_string^_string^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_string_string].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_string_string].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_text!_text!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_text!_text!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_text^_text^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_text^_text^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_text_text].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_text_text].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_tstz!_tstz!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_tstz!_tstz!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_tstz_tstz].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_tstz_tstz].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_unsigned!_unsigned!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_unsigned!_unsigned!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_unsigned_unsigned].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_unsigned_unsigned].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_uuid!_uuid!].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_uuid!_uuid!].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_uuid^_uuid^].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_uuid^_uuid^].snap -------------------------------------------------------------------------------- /loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_uuid_uuid].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/snapshots/loco_gen__tera_ext__tests__can_render_form_field_[form_uuid_uuid].snap -------------------------------------------------------------------------------- /loco-gen/src/template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/template.rs -------------------------------------------------------------------------------- /loco-gen/src/templates/controller/api/controller.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/controller/api/controller.t -------------------------------------------------------------------------------- /loco-gen/src/templates/controller/api/test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/controller/api/test.t -------------------------------------------------------------------------------- /loco-gen/src/templates/controller/html/controller.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/controller/html/controller.t -------------------------------------------------------------------------------- /loco-gen/src/templates/controller/html/view.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/controller/html/view.t -------------------------------------------------------------------------------- /loco-gen/src/templates/controller/htmx/controller.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/controller/htmx/controller.t -------------------------------------------------------------------------------- /loco-gen/src/templates/controller/htmx/view.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/controller/htmx/view.t -------------------------------------------------------------------------------- /loco-gen/src/templates/data/0_mod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/data/0_mod.t -------------------------------------------------------------------------------- /loco-gen/src/templates/data/data.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/data/data.t -------------------------------------------------------------------------------- /loco-gen/src/templates/data/mod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/data/mod.t -------------------------------------------------------------------------------- /loco-gen/src/templates/data/struct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/data/struct.t -------------------------------------------------------------------------------- /loco-gen/src/templates/deployment/docker/docker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/deployment/docker/docker.t -------------------------------------------------------------------------------- /loco-gen/src/templates/deployment/docker/ignore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/deployment/docker/ignore.t -------------------------------------------------------------------------------- /loco-gen/src/templates/deployment/nginx/nginx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/deployment/nginx/nginx.t -------------------------------------------------------------------------------- /loco-gen/src/templates/deployment/shuttle/config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/deployment/shuttle/config.t -------------------------------------------------------------------------------- /loco-gen/src/templates/deployment/shuttle/shuttle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/deployment/shuttle/shuttle.t -------------------------------------------------------------------------------- /loco-gen/src/templates/mailer/html.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/mailer/html.t -------------------------------------------------------------------------------- /loco-gen/src/templates/mailer/mailer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/mailer/mailer.t -------------------------------------------------------------------------------- /loco-gen/src/templates/mailer/subject.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/mailer/subject.t -------------------------------------------------------------------------------- /loco-gen/src/templates/mailer/text.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/mailer/text.t -------------------------------------------------------------------------------- /loco-gen/src/templates/migration/add_columns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/migration/add_columns.t -------------------------------------------------------------------------------- /loco-gen/src/templates/migration/add_references.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/migration/add_references.t -------------------------------------------------------------------------------- /loco-gen/src/templates/migration/empty.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/migration/empty.t -------------------------------------------------------------------------------- /loco-gen/src/templates/migration/join_table.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/migration/join_table.t -------------------------------------------------------------------------------- /loco-gen/src/templates/migration/remove_columns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/migration/remove_columns.t -------------------------------------------------------------------------------- /loco-gen/src/templates/model/model.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/model/model.t -------------------------------------------------------------------------------- /loco-gen/src/templates/model/test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/model/test.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/api/controller.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/api/controller.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/api/test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/api/test.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/html/base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/html/base.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/html/controller.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/html/controller.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/html/view.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/html/view.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/html/view_create.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/html/view_create.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/html/view_edit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/html/view_edit.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/html/view_list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/html/view_list.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/html/view_show.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/html/view_show.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/htmx/base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/htmx/base.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/htmx/controller.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/htmx/controller.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/htmx/view.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/htmx/view.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/htmx/view_create.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/htmx/view_create.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/htmx/view_edit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/htmx/view_edit.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/htmx/view_list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/htmx/view_list.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scaffold/htmx/view_show.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scaffold/htmx/view_show.t -------------------------------------------------------------------------------- /loco-gen/src/templates/scheduler/scheduler.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/scheduler/scheduler.t -------------------------------------------------------------------------------- /loco-gen/src/templates/task/task.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/task/task.t -------------------------------------------------------------------------------- /loco-gen/src/templates/task/test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/task/test.t -------------------------------------------------------------------------------- /loco-gen/src/templates/worker/test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/worker/test.t -------------------------------------------------------------------------------- /loco-gen/src/templates/worker/worker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/templates/worker/worker.t -------------------------------------------------------------------------------- /loco-gen/src/tera_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/tera_ext.rs -------------------------------------------------------------------------------- /loco-gen/src/testutil.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/src/testutil.rs -------------------------------------------------------------------------------- /loco-gen/tests/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/db.rs -------------------------------------------------------------------------------- /loco-gen/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod templates; 2 | -------------------------------------------------------------------------------- /loco-gen/tests/snapshots/db__migrations_flow_postgres.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/snapshots/db__migrations_flow_postgres.snap -------------------------------------------------------------------------------- /loco-gen/tests/snapshots/db__migrations_flow_sqlite.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/snapshots/db__migrations_flow_sqlite.snap -------------------------------------------------------------------------------- /loco-gen/tests/snapshots/r#mod__db__migrations_flow_postgres.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/snapshots/r#mod__db__migrations_flow_postgres.snap -------------------------------------------------------------------------------- /loco-gen/tests/snapshots/r#mod__db__migrations_flow_sqlite.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/snapshots/r#mod__db__migrations_flow_sqlite.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/controller.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/deployment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/deployment.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/mailer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/mailer.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/migration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/migration.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/mod.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/model.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/scaffold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/scaffold.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/scheduler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/scheduler.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@Api_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@Api_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@Html_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@Html_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@Htmx_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@Htmx_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@scheduler.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@scheduler.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@task.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@task.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[controller_file]@worker.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[controller_file]@worker.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[docker_file_[0]_[false]]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[docker_file_[0]_[false]]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[docker_file_[0]_[true]]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[docker_file_[0]_[true]]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[docker_file_[2]_[false]]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[docker_file_[2]_[false]]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[docker_file_[2]_[true]]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[docker_file_[2]_[true]]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[html_t_file]@mailer.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[html_t_file]@mailer.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[mailer_mod_rs]@mailer.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[mailer_mod_rs]@mailer.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@add_column_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@add_column_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@add_reference_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@add_reference_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@create_join_table_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@create_join_table_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@create_table_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@create_table_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@create_table_without_tz_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@create_table_without_tz_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@empty_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@empty_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@model.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@model.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[migration_file]@remove_columns_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[migration_file]@remove_columns_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[nginx]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[nginx]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[shuttle.rs]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[shuttle.rs]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[subject_t_file]@mailer.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[subject_t_file]@mailer.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[test_model]@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[test_model]@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[test_model]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[test_model]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[test_model]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[test_model]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[test_model]@model.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[test_model]@model.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[tests_controller_mod_rs]@Api_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[tests_controller_mod_rs]@Api_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[tests_task_file]@task.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[tests_task_file]@task.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[tests_worker_file]@worker.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[tests_worker_file]@worker.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[text_t_file]@mailer.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[text_t_file]@mailer.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[create]]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[create]]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[create]]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[create]]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[edit]]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[edit]]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[edit]]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[edit]]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[list]]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[list]]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[list]]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[list]]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[show]]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[show]]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_[show]]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_[show]]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_rs]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_rs]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate[views_rs]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate[views_rs]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@add_column_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@add_column_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@add_reference_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@add_reference_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@create_join_table_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@create_join_table_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@create_join_table_without_tz_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@create_join_table_without_tz_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@create_table_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@create_table_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@create_table_without_tz_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@create_table_without_tz_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@empty_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@empty_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_result@remove_columns_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_result@remove_columns_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_results@Api_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_results@Api_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_results@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_results@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_results@Html_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_results@Html_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_results@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_results@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_results@Htmx_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_results@Htmx_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/generate_results@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/generate_results@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[.config_toml]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[.config_toml]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@Api_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@Api_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@Html_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@Html_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@Htmx_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@Htmx_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@task.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@task.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[app_rs]@worker.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[app_rs]@worker.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[cargo_toml]@deployment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[cargo_toml]@deployment.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Api_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Api_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Html_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Html_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Htmx_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Htmx_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[controller_mod_rs]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[mailer_mod_rs]@mailer.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[mailer_mod_rs]@mailer.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@add_column_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@add_column_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@add_reference_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@add_reference_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@create_join_table_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@create_join_table_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@create_join_table_without_tz_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@create_join_table_without_tz_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@create_table_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@create_table_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@create_table_without_tz_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@create_table_without_tz_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@empty_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@empty_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@model.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@model.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[migration_lib]@remove_columns_migration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[migration_lib]@remove_columns_migration.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[task_mod_rs]@task.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[task_mod_rs]@task.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[test_mod]@Api_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[test_mod]@Api_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[test_mod]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[test_mod]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[test_mod]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[test_mod]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[test_mod]@model.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[test_mod]@model.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[tests_controller_mod_rs]@Api_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[tests_controller_mod_rs]@Api_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[tests_task_mod]@task.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[tests_task_mod]@task.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[tests_worker_mod]@worker.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[tests_worker_mod]@worker.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[views_[GET]]@Html_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[views_[GET]]@Html_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[views_[GET]]@Htmx_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[views_[GET]]@Htmx_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[views_[POST]]@Html_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[views_[POST]]@Html_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[views_[POST]]@Htmx_controller.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[views_[POST]]@Htmx_controller.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[views_mod_rs]@Html_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[views_mod_rs]@Html_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[views_mod_rs]@Htmx_scaffold.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[views_mod_rs]@Htmx_scaffold.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/snapshots/inject[worker_mod_rs]@worker.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/snapshots/inject[worker_mod_rs]@worker.snap -------------------------------------------------------------------------------- /loco-gen/tests/templates/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/task.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/utils.rs -------------------------------------------------------------------------------- /loco-gen/tests/templates/worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-gen/tests/templates/worker.rs -------------------------------------------------------------------------------- /loco-new/.gitignore: -------------------------------------------------------------------------------- 1 | !Cargo.lock 2 | -------------------------------------------------------------------------------- /loco-new/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/Cargo.lock -------------------------------------------------------------------------------- /loco-new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/Cargo.toml -------------------------------------------------------------------------------- /loco-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/README.md -------------------------------------------------------------------------------- /loco-new/base_template/.cargo/config.toml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/.cargo/config.toml.t -------------------------------------------------------------------------------- /loco-new/base_template/.github/workflows/ci.yaml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/.github/workflows/ci.yaml.t -------------------------------------------------------------------------------- /loco-new/base_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/.gitignore -------------------------------------------------------------------------------- /loco-new/base_template/.rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 100 2 | use_small_heuristics = "Default" 3 | -------------------------------------------------------------------------------- /loco-new/base_template/Cargo.toml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/Cargo.toml.t -------------------------------------------------------------------------------- /loco-new/base_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/README.md -------------------------------------------------------------------------------- /loco-new/base_template/assets/i18n/de-DE/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/assets/i18n/de-DE/main.ftl -------------------------------------------------------------------------------- /loco-new/base_template/assets/i18n/en-US/main.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/assets/i18n/en-US/main.ftl -------------------------------------------------------------------------------- /loco-new/base_template/assets/i18n/shared.ftl: -------------------------------------------------------------------------------- 1 | -something = foo 2 | -------------------------------------------------------------------------------- /loco-new/base_template/assets/static/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/assets/static/404.html -------------------------------------------------------------------------------- /loco-new/base_template/assets/static/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/assets/static/image.png -------------------------------------------------------------------------------- /loco-new/base_template/assets/views/home/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/assets/views/home/hello.html -------------------------------------------------------------------------------- /loco-new/base_template/config/development.yaml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/config/development.yaml.t -------------------------------------------------------------------------------- /loco-new/base_template/config/production.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loco-new/base_template/config/test.yaml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/config/test.yaml.t -------------------------------------------------------------------------------- /loco-new/base_template/examples/playground.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/examples/playground.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/.gitignore -------------------------------------------------------------------------------- /loco-new/base_template/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/README.md -------------------------------------------------------------------------------- /loco-new/base_template/frontend/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/biome.json -------------------------------------------------------------------------------- /loco-new/base_template/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/package.json -------------------------------------------------------------------------------- /loco-new/base_template/frontend/rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/rsbuild.config.ts -------------------------------------------------------------------------------- /loco-new/base_template/frontend/src/LocoSplash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/src/LocoSplash.tsx -------------------------------------------------------------------------------- /loco-new/base_template/frontend/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/src/assets/favicon.ico -------------------------------------------------------------------------------- /loco-new/base_template/frontend/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/src/env.d.ts -------------------------------------------------------------------------------- /loco-new/base_template/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/src/index.css -------------------------------------------------------------------------------- /loco-new/base_template/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/src/index.tsx -------------------------------------------------------------------------------- /loco-new/base_template/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/frontend/tsconfig.json -------------------------------------------------------------------------------- /loco-new/base_template/migration/Cargo.toml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/migration/Cargo.toml.t -------------------------------------------------------------------------------- /loco-new/base_template/migration/src/lib.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/migration/src/lib.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/migration/src/m20220101_000001_users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/migration/src/m20220101_000001_users.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/app.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/app.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/bin/main.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/bin/main.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/bin/tool.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/bin/tool.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/controllers/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/controllers/auth.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/controllers/home.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/controllers/home.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/controllers/mod.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/controllers/mod.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/data/mod.rs.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loco-new/base_template/src/fixtures/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/fixtures/users.yaml -------------------------------------------------------------------------------- /loco-new/base_template/src/initializers/mod.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/initializers/mod.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/initializers/view_engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/initializers/view_engine.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/lib.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/lib.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/mailers/auth.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/forgot/html.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/mailers/auth/forgot/html.t -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/forgot/subject.t: -------------------------------------------------------------------------------- 1 | Your reset password link 2 | -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/forgot/text.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/mailers/auth/forgot/text.t -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/magic_link/html.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/mailers/auth/magic_link/html.t -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/magic_link/subject.t: -------------------------------------------------------------------------------- 1 | Magic link example 2 | -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/magic_link/text.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/mailers/auth/magic_link/text.t -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/welcome/html.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/mailers/auth/welcome/html.t -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/welcome/subject.t: -------------------------------------------------------------------------------- 1 | Welcome {{name}} 2 | -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/auth/welcome/text.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/mailers/auth/welcome/text.t -------------------------------------------------------------------------------- /loco-new/base_template/src/mailers/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod auth; 2 | -------------------------------------------------------------------------------- /loco-new/base_template/src/models/_entities/mod.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/models/_entities/mod.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/models/_entities/prelude.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/models/_entities/prelude.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/models/_entities/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/models/_entities/users.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/models/mod.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/models/mod.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/models/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/models/users.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/tasks/mod.rs.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loco-new/base_template/src/views/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/views/auth.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/views/home.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/views/home.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/views/mod.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/views/mod.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/src/workers/downloader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/src/workers/downloader.rs -------------------------------------------------------------------------------- /loco-new/base_template/src/workers/mod.rs.t: -------------------------------------------------------------------------------- 1 | pub mod downloader; -------------------------------------------------------------------------------- /loco-new/base_template/tests/mod.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/mod.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/mod.rs.t: -------------------------------------------------------------------------------- 1 | {%- if settings.auth %} 2 | mod users; 3 | {%- endif %} -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/snapshots/can_create_with_password@users.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/snapshots/can_create_with_password@users.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/snapshots/can_find_by_email@users-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/snapshots/can_find_by_email@users-2.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/snapshots/can_find_by_email@users.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/snapshots/can_find_by_email@users.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/snapshots/can_find_by_pid@users-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/snapshots/can_find_by_pid@users-2.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/snapshots/can_find_by_pid@users.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/snapshots/can_find_by_pid@users.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/snapshots/can_validate_model@users.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/snapshots/can_validate_model@users.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/snapshots/handle_create_with_password_with_duplicate@users.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/snapshots/handle_create_with_password_with_duplicate@users.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/models/users.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/models/users.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/auth.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/auth.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/home.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/home.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/mod.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/mod.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/prepare_data.rs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/prepare_data.rs.t -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/can_auth_with_magic_link@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/can_auth_with_magic_link@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/can_get_current_user@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/can_get_current_user@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/can_login_without_verify@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/can_login_without_verify@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/can_register@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/can_register@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/can_reset_password@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/can_reset_password@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/login_with_invalid_password@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/login_with_invalid_password@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/login_with_valid_password@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/login_with_valid_password@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/requests/snapshots/resend_verification_user@auth_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/base_template/tests/requests/snapshots/resend_verification_user@auth_request.snap -------------------------------------------------------------------------------- /loco-new/base_template/tests/tasks/mod.rs.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loco-new/base_template/tests/workers/mod.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /loco-new/devnew.sh: -------------------------------------------------------------------------------- 1 | LOCO_DEV_MODE_PATH=../../ cargo run -- new 2 | -------------------------------------------------------------------------------- /loco-new/setup.rhai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/setup.rhai -------------------------------------------------------------------------------- /loco-new/src/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/bin/main.rs -------------------------------------------------------------------------------- /loco-new/src/generator/executer/filesystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/generator/executer/filesystem.rs -------------------------------------------------------------------------------- /loco-new/src/generator/executer/inmem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/generator/executer/inmem.rs -------------------------------------------------------------------------------- /loco-new/src/generator/executer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/generator/executer/mod.rs -------------------------------------------------------------------------------- /loco-new/src/generator/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/generator/mod.rs -------------------------------------------------------------------------------- /loco-new/src/generator/template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/generator/template.rs -------------------------------------------------------------------------------- /loco-new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/lib.rs -------------------------------------------------------------------------------- /loco-new/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/settings.rs -------------------------------------------------------------------------------- /loco-new/src/wizard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/src/wizard.rs -------------------------------------------------------------------------------- /loco-new/tests/assertion/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/assertion/mod.rs -------------------------------------------------------------------------------- /loco-new/tests/assertion/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/assertion/string.rs -------------------------------------------------------------------------------- /loco-new/tests/assertion/toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/assertion/toml.rs -------------------------------------------------------------------------------- /loco-new/tests/assertion/yaml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/assertion/yaml.rs -------------------------------------------------------------------------------- /loco-new/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/mod.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/asset.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/auth.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/background.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/background.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/db.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/features.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/initializers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/initializers.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/mailer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/mailer.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/mod.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/module_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/module_name.rs -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__asset__cargo_dependencies_Clientside.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__asset__cargo_dependencies_Clientside.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__asset__cargo_dependencies_None.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__asset__cargo_dependencies_None.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__asset__cargo_dependencies_Serverside.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__asset__cargo_dependencies_Serverside.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_false_None.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_false_None.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_false_Sqlite.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_false_Sqlite.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_true_None.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_true_None.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_true_Sqlite.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__auth__src_app_rs_auth_true_Sqlite.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_Async.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_Async.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_Blocking.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_Blocking.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_None.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_None.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_Queue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__background__src_app_rs_Queue.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__db__cargo_dependencies_None.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__db__cargo_dependencies_None.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__db__cargo_dependencies_Postgres.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__db__cargo_dependencies_Postgres.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__db__cargo_dependencies_Sqlite.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__db__cargo_dependencies_Sqlite.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__db__config_test_yaml_config_database_Sqlite.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__db__config_test_yaml_config_database_Sqlite.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__db__src_app_rs_None.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__db__src_app_rs_None.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__db__src_app_rs_Postgres.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__db__src_app_rs_Postgres.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__db__src_app_rs_Sqlite.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__db__src_app_rs_Sqlite.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__initializers__src_app_rs_with_initializers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__initializers__src_app_rs_with_initializers.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__mailer__cargo_dependencies_mailer_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__mailer__cargo_dependencies_mailer_false.snap -------------------------------------------------------------------------------- /loco-new/tests/templates/snapshots/r#mod__templates__mailer__cargo_dependencies_mailer_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/templates/snapshots/r#mod__templates__mailer__cargo_dependencies_mailer_true.snap -------------------------------------------------------------------------------- /loco-new/tests/wizard/mod.rs: -------------------------------------------------------------------------------- 1 | mod new; 2 | -------------------------------------------------------------------------------- /loco-new/tests/wizard/new.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/loco-new/tests/wizard/new.rs -------------------------------------------------------------------------------- /media/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/media/image.png -------------------------------------------------------------------------------- /snipdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/snipdoc.yml -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/auth/jwt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/jwt.rs -------------------------------------------------------------------------------- /src/auth/mod.rs: -------------------------------------------------------------------------------- 1 | #[cfg(feature = "auth_jwt")] 2 | pub mod jwt; 3 | -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__token expired.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__token expired.snap -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom array claims.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom array claims.snap -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom boolean claims.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom boolean claims.snap -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom nested array claims.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom nested array claims.snap -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom nested claims.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom nested claims.snap -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom number claims.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom number claims.snap -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom string claims.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__valid token and custom string claims.snap -------------------------------------------------------------------------------- /src/auth/snapshots/loco_rs__auth__jwt__tests__valid token.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/auth/snapshots/loco_rs__auth__jwt__tests__valid token.snap -------------------------------------------------------------------------------- /src/banner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/banner.rs -------------------------------------------------------------------------------- /src/bgworker/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/mod.rs -------------------------------------------------------------------------------- /src/bgworker/pg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/pg.rs -------------------------------------------------------------------------------- /src/bgworker/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/redis.rs -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_complete_job_with_interval.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_complete_job_with_interval.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_dequeue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_dequeue.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_enqueue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_enqueue.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_fail_job.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_fail_job.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_initialize_database.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__pg__tests__can_initialize_database.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_complete_job_with_interval.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_complete_job_with_interval.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_dequeue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_dequeue.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_enqueue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_enqueue.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_fail_job.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__can_fail_job.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__sqlt_loco_queue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__sqlt_loco_queue.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__sqlt_loco_queue_lock.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__sqlt__tests__sqlt_loco_queue_lock.snap -------------------------------------------------------------------------------- /src/bgworker/snapshots/loco_rs__bgworker__tests__can_dump_jobs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/snapshots/loco_rs__bgworker__tests__can_dump_jobs.snap -------------------------------------------------------------------------------- /src/bgworker/sqlt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/bgworker/sqlt.rs -------------------------------------------------------------------------------- /src/boot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/boot.rs -------------------------------------------------------------------------------- /src/cache/drivers/inmem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/cache/drivers/inmem.rs -------------------------------------------------------------------------------- /src/cache/drivers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/cache/drivers/mod.rs -------------------------------------------------------------------------------- /src/cache/drivers/null.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/cache/drivers/null.rs -------------------------------------------------------------------------------- /src/cache/drivers/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/cache/drivers/redis.rs -------------------------------------------------------------------------------- /src/cache/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/cache/mod.rs -------------------------------------------------------------------------------- /src/cargo_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/cargo_config.rs -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/controller/app_routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/app_routes.rs -------------------------------------------------------------------------------- /src/controller/backtrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/backtrace.rs -------------------------------------------------------------------------------- /src/controller/describe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/describe.rs -------------------------------------------------------------------------------- /src/controller/extractor/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/extractor/auth.rs -------------------------------------------------------------------------------- /src/controller/extractor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/extractor/mod.rs -------------------------------------------------------------------------------- /src/controller/extractor/shared_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/extractor/shared_store.rs -------------------------------------------------------------------------------- /src/controller/extractor/validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/extractor/validate.rs -------------------------------------------------------------------------------- /src/controller/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/format.rs -------------------------------------------------------------------------------- /src/controller/middleware/_archive/content_etag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/_archive/content_etag.rs -------------------------------------------------------------------------------- /src/controller/middleware/catch_panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/catch_panic.rs -------------------------------------------------------------------------------- /src/controller/middleware/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/compression.rs -------------------------------------------------------------------------------- /src/controller/middleware/cors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/cors.rs -------------------------------------------------------------------------------- /src/controller/middleware/etag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/etag.rs -------------------------------------------------------------------------------- /src/controller/middleware/fallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/fallback.html -------------------------------------------------------------------------------- /src/controller/middleware/fallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/fallback.rs -------------------------------------------------------------------------------- /src/controller/middleware/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/format.rs -------------------------------------------------------------------------------- /src/controller/middleware/limit_payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/limit_payload.rs -------------------------------------------------------------------------------- /src/controller/middleware/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/logger.rs -------------------------------------------------------------------------------- /src/controller/middleware/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/mod.rs -------------------------------------------------------------------------------- /src/controller/middleware/powered_by.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/powered_by.rs -------------------------------------------------------------------------------- /src/controller/middleware/remote_ip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/remote_ip.rs -------------------------------------------------------------------------------- /src/controller/middleware/request_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/request_id.rs -------------------------------------------------------------------------------- /src/controller/middleware/secure_headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/secure_headers.json -------------------------------------------------------------------------------- /src/controller/middleware/secure_headers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/secure_headers.rs -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__cors__tests__cors_[default].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__cors__tests__cors_[default].snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-2.snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-3.snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-4.snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-5.snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-6.snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-7.snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing-8.snap -------------------------------------------------------------------------------- /src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/snapshots/loco_rs__controller__middleware__remote_ip__tests__parsing.snap -------------------------------------------------------------------------------- /src/controller/middleware/static_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/static_assets.rs -------------------------------------------------------------------------------- /src/controller/middleware/static_assets_embedded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/static_assets_embedded.rs -------------------------------------------------------------------------------- /src/controller/middleware/timeout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/middleware/timeout.rs -------------------------------------------------------------------------------- /src/controller/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/mod.rs -------------------------------------------------------------------------------- /src/controller/monitoring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/monitoring.rs -------------------------------------------------------------------------------- /src/controller/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/routes.rs -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]_health].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]_health].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]_ping].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]_ping].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]_readiness].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]_readiness].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]api[slash]loco-rs].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]api[slash]loco-rs].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]api[slash]loco].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]api[slash]loco].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]multiple1].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]multiple1].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]multiple2].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]multiple2].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]multiple3].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]multiple3].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]normalizer].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__app_routes__tests__[[slash]normalizer].snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_cookies_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_cookies_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_empty_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_empty_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_html_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_html_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_json_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_json_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_redirect_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_redirect_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_template_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_template_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_text_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_text_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_view_response-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_view_response-2.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__builder_view_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__builder_view_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__empty_json_response_format.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__empty_json_response_format.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__empty_response_format.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__empty_response_format.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__html_response_format.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__html_response_format.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__json_response_format.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__json_response_format.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__redirect_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__redirect_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__template_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__template_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__text_response_format.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__text_response_format.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__view_response-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__view_response-2.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__view_response.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__view_response.snap -------------------------------------------------------------------------------- /src/controller/snapshots/loco_rs__controller__format__tests__yaml_response_format.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/snapshots/loco_rs__controller__format__tests__yaml_response_format.snap -------------------------------------------------------------------------------- /src/controller/views/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/views/engine.rs -------------------------------------------------------------------------------- /src/controller/views/engine_embedded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/views/engine_embedded.rs -------------------------------------------------------------------------------- /src/controller/views/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/views/mod.rs -------------------------------------------------------------------------------- /src/controller/views/pagination.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/views/pagination.rs -------------------------------------------------------------------------------- /src/controller/views/tera_builtins/filters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/views/tera_builtins/filters/mod.rs -------------------------------------------------------------------------------- /src/controller/views/tera_builtins/filters/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/controller/views/tera_builtins/filters/number.rs -------------------------------------------------------------------------------- /src/controller/views/tera_builtins/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod filters; 2 | -------------------------------------------------------------------------------- /src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/data.rs -------------------------------------------------------------------------------- /src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/db.rs -------------------------------------------------------------------------------- /src/depcheck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/depcheck.rs -------------------------------------------------------------------------------- /src/doctor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/doctor.rs -------------------------------------------------------------------------------- /src/env_vars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/env_vars.rs -------------------------------------------------------------------------------- /src/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/environment.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/hash.rs -------------------------------------------------------------------------------- /src/initializers/extra_db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/initializers/extra_db.rs -------------------------------------------------------------------------------- /src/initializers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/initializers/mod.rs -------------------------------------------------------------------------------- /src/initializers/multi_db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/initializers/multi_db.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/mailer/email_sender.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/mailer/email_sender.rs -------------------------------------------------------------------------------- /src/mailer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/mailer/mod.rs -------------------------------------------------------------------------------- /src/mailer/snapshots/loco_rs__mailer__email_sender__tests__can_send_email.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/mailer/snapshots/loco_rs__mailer__email_sender__tests__can_send_email.snap -------------------------------------------------------------------------------- /src/mailer/snapshots/loco_rs__mailer__template__tests__can_render_template.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/mailer/snapshots/loco_rs__mailer__template__tests__can_render_template.snap -------------------------------------------------------------------------------- /src/mailer/template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/mailer/template.rs -------------------------------------------------------------------------------- /src/model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/model/mod.rs -------------------------------------------------------------------------------- /src/model/query/dsl/date_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/model/query/dsl/date_range.rs -------------------------------------------------------------------------------- /src/model/query/dsl/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/model/query/dsl/mod.rs -------------------------------------------------------------------------------- /src/model/query/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/model/query/mod.rs -------------------------------------------------------------------------------- /src/model/query/paginate/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/model/query/paginate/mod.rs -------------------------------------------------------------------------------- /src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/prelude.rs -------------------------------------------------------------------------------- /src/scheduler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/scheduler.rs -------------------------------------------------------------------------------- /src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/schema.rs -------------------------------------------------------------------------------- /src/snapshots/loco_rs__auth__tests__token expired.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__auth__tests__token expired.snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__auth__tests__valid token.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__auth__tests__valid token.snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__scheduler__tests__can_display_scheduler.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__scheduler__tests__can_display_scheduler.snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__scheduler__tests__can_prepare_command_[shell].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__scheduler__tests__can_prepare_command_[shell].snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__scheduler__tests__can_prepare_command_[task].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__scheduler__tests__can_prepare_command_[task].snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__validation__tests__struct-[foo-bar].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__validation__tests__struct-[foo-bar].snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__validation__tests__struct-[foo].snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__validation__tests__struct-[foo].snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__worker__tests__default_custom_queues-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__worker__tests__default_custom_queues-2.snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__worker__tests__default_custom_queues-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__worker__tests__default_custom_queues-3.snap -------------------------------------------------------------------------------- /src/snapshots/loco_rs__worker__tests__default_custom_queues.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/snapshots/loco_rs__worker__tests__default_custom_queues.snap -------------------------------------------------------------------------------- /src/storage/contents.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/contents.rs -------------------------------------------------------------------------------- /src/storage/drivers/aws.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/aws.rs -------------------------------------------------------------------------------- /src/storage/drivers/azure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/azure.rs -------------------------------------------------------------------------------- /src/storage/drivers/gcp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/gcp.rs -------------------------------------------------------------------------------- /src/storage/drivers/local.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/local.rs -------------------------------------------------------------------------------- /src/storage/drivers/mem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/mem.rs -------------------------------------------------------------------------------- /src/storage/drivers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/mod.rs -------------------------------------------------------------------------------- /src/storage/drivers/null.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/null.rs -------------------------------------------------------------------------------- /src/storage/drivers/opendal_adapter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/drivers/opendal_adapter.rs -------------------------------------------------------------------------------- /src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/mod.rs -------------------------------------------------------------------------------- /src/storage/strategies/backup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/strategies/backup.rs -------------------------------------------------------------------------------- /src/storage/strategies/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/strategies/mirror.rs -------------------------------------------------------------------------------- /src/storage/strategies/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/strategies/mod.rs -------------------------------------------------------------------------------- /src/storage/strategies/single.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/strategies/single.rs -------------------------------------------------------------------------------- /src/storage/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/storage/stream.rs -------------------------------------------------------------------------------- /src/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/task.rs -------------------------------------------------------------------------------- /src/tera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tera.rs -------------------------------------------------------------------------------- /src/testing/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/testing/db.rs -------------------------------------------------------------------------------- /src/testing/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/testing/mod.rs -------------------------------------------------------------------------------- /src/testing/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/testing/prelude.rs -------------------------------------------------------------------------------- /src/testing/redaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/testing/redaction.rs -------------------------------------------------------------------------------- /src/testing/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/testing/request.rs -------------------------------------------------------------------------------- /src/testing/selector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/testing/selector.rs -------------------------------------------------------------------------------- /src/tests_cfg/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/app.rs -------------------------------------------------------------------------------- /src/tests_cfg/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/config.rs -------------------------------------------------------------------------------- /src/tests_cfg/controllers/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/controllers/auth.rs -------------------------------------------------------------------------------- /src/tests_cfg/controllers/home.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/controllers/home.rs -------------------------------------------------------------------------------- /src/tests_cfg/controllers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/controllers/mod.rs -------------------------------------------------------------------------------- /src/tests_cfg/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/db.rs -------------------------------------------------------------------------------- /src/tests_cfg/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/mod.rs -------------------------------------------------------------------------------- /src/tests_cfg/postgres.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/postgres.rs -------------------------------------------------------------------------------- /src/tests_cfg/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/queue.rs -------------------------------------------------------------------------------- /src/tests_cfg/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/redis.rs -------------------------------------------------------------------------------- /src/tests_cfg/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/tests_cfg/task.rs -------------------------------------------------------------------------------- /src/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/src/validation.rs -------------------------------------------------------------------------------- /tests/build_scripts/embedded_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/embedded_assets.rs -------------------------------------------------------------------------------- /tests/build_scripts/mod.rs: -------------------------------------------------------------------------------- 1 | mod embedded_assets; 2 | -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__build_static_assets_static.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__build_static_assets_static.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__collected_all_files.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__collected_all_files.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__collected_css_files.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__collected_css_files.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__complex_template_inheritance.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__complex_template_inheritance.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__discovered_directories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__discovered_directories.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__empty_static_assets_rs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__empty_static_assets_rs.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__empty_templates_rs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__empty_templates_rs.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__static_assets_rs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__static_assets_rs.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__template_inheritance.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__template_inheritance.snap -------------------------------------------------------------------------------- /tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__view_templates_rs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/build_scripts/snapshots/r#mod__build_scripts__embedded_assets__view_templates_rs.snap -------------------------------------------------------------------------------- /tests/controller/extractor/auth/api_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/extractor/auth/api_token.rs -------------------------------------------------------------------------------- /tests/controller/extractor/auth/jwt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/extractor/auth/jwt.rs -------------------------------------------------------------------------------- /tests/controller/extractor/auth/jwt_with_user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/extractor/auth/jwt_with_user.rs -------------------------------------------------------------------------------- /tests/controller/extractor/auth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/extractor/auth/mod.rs -------------------------------------------------------------------------------- /tests/controller/extractor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/extractor/mod.rs -------------------------------------------------------------------------------- /tests/controller/extractor/shared_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/extractor/shared_store.rs -------------------------------------------------------------------------------- /tests/controller/extractor/validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/extractor/validate.rs -------------------------------------------------------------------------------- /tests/controller/into_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/into_response.rs -------------------------------------------------------------------------------- /tests/controller/middlewares.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/middlewares.rs -------------------------------------------------------------------------------- /tests/controller/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/mod.rs -------------------------------------------------------------------------------- /tests/controller/snapshots/cors_[default]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/cors_[default]@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/cors_[disabled]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/cors_[disabled]@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/cors_[with_allow_headers]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/cors_[with_allow_headers]@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/cors_[with_allow_methods]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/cors_[with_allow_methods]@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/cors_[with_max_age]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/cors_[with_max_age]@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/panic@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/panic@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/secure_headers_[empty]_overrides[none]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/secure_headers_[empty]_overrides[none]@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/secure_headers_[github]_overrides[Content-Security-Policy]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/secure_headers_[github]_overrides[Content-Security-Policy]@middlewares.snap -------------------------------------------------------------------------------- /tests/controller/snapshots/secure_headers_[none]_overrides[none]@middlewares.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/controller/snapshots/secure_headers_[none]_overrides[none]@middlewares.snap -------------------------------------------------------------------------------- /tests/fixtures/email_template/test/html.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/fixtures/email_template/test/html.t -------------------------------------------------------------------------------- /tests/fixtures/email_template/test/subject.t: -------------------------------------------------------------------------------- 1 | Test {{ name }} 2 | -------------------------------------------------------------------------------- /tests/fixtures/email_template/test/text.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/fixtures/email_template/test/text.t -------------------------------------------------------------------------------- /tests/fixtures/queue/jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/fixtures/queue/jobs.yaml -------------------------------------------------------------------------------- /tests/infra_cfg/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod server; 2 | -------------------------------------------------------------------------------- /tests/infra_cfg/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/infra_cfg/server.rs -------------------------------------------------------------------------------- /tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/tests/mod.rs -------------------------------------------------------------------------------- /xtask/.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/.rustfmt.toml -------------------------------------------------------------------------------- /xtask/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/Cargo.lock -------------------------------------------------------------------------------- /xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/Cargo.toml -------------------------------------------------------------------------------- /xtask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/README.md -------------------------------------------------------------------------------- /xtask/src/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/bin/main.rs -------------------------------------------------------------------------------- /xtask/src/bump_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/bump_version.rs -------------------------------------------------------------------------------- /xtask/src/ci.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/ci.rs -------------------------------------------------------------------------------- /xtask/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/errors.rs -------------------------------------------------------------------------------- /xtask/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/lib.rs -------------------------------------------------------------------------------- /xtask/src/out.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/out.rs -------------------------------------------------------------------------------- /xtask/src/prompt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/prompt.rs -------------------------------------------------------------------------------- /xtask/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/utils.rs -------------------------------------------------------------------------------- /xtask/src/versions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loco-rs/loco/HEAD/xtask/src/versions.rs --------------------------------------------------------------------------------