diff --git a/README.md b/README.md index a5fc2eb2..bbf2ca3a 100644 --- a/README.md +++ b/README.md @@ -19,17 +19,18 @@ ## Getting Started [![GitHub stars](https://img.shields.io/github/stars/SeaQL/sea-orm.svg?style=social&label=Star&maxAge=1)](https://github.com/SeaQL/sea-orm/stargazers/) -If you like what we do, consider starring, commenting, sharing and contributing! +If you like what we do, consider starring, sharing and contributing! + ++ [Documentation](https://www.sea-ql.org/SeaORM) ++ [Tutorial](https://www.sea-ql.org/sea-orm-tutorial) ++ [Cookbook](https://www.sea-ql.org/sea-orm-cookbook) [![Discord](https://img.shields.io/discord/873880840487206962?label=Discord)](https://discord.com/invite/uCPdDXzbdv) Join our Discord server to chat with others in the SeaQL community! -+ [Getting Started](https://www.sea-ql.org/SeaORM/docs/index) -+ [Step-by-step Tutorials](https://www.sea-ql.org/sea-orm-tutorial/) -+ [Cookbook](https://www.sea-ql.org/sea-orm-cookbook/) -+ [Usage Example](https://github.com/SeaQL/sea-orm/tree/master/examples/basic) +Please help us with maintaining SeaORM by completing the [SeaQL Community Survey 2023](https://sea-ql.org/community-survey)! -Integration examples +Integration examples: + [Actix v4 Example](https://github.com/SeaQL/sea-orm/tree/master/examples/actix_example) + [Actix v3 Example](https://github.com/SeaQL/sea-orm/tree/master/examples/actix3_example) @@ -51,9 +52,9 @@ Integration examples Built upon [SeaQuery](https://github.com/SeaQL/sea-query), SeaORM allows you to build complex dynamic queries. -3. Multi-backend +3. Testable - You can develop applications targeting multiple backends, or use Mock / SQLite as a test double in test suites. + Use Mock / SQLite to write tests for your application logic. 4. Service Oriented diff --git a/sea-orm-cli/src/cli.rs b/sea-orm-cli/src/cli.rs index 1421646f..ff88d30a 100644 --- a/sea-orm-cli/src/cli.rs +++ b/sea-orm-cli/src/cli.rs @@ -24,16 +24,19 @@ AUTHORS: An async & dynamic ORM for Rust \ | ,/ =============================== \|_/ - Getting Started! - - documentation: https://www.sea-ql.org/SeaORM - - step-by-step tutorials: https://www.sea-ql.org/sea-orm-tutorial - - integration examples: https://github.com/SeaQL/sea-orm/tree/master/examples - - cookbook: https://www.sea-ql.org/sea-orm-cookbook + Getting Started + - Documentation: https://www.sea-ql.org/SeaORM + - Tutorial: https://www.sea-ql.org/sea-orm-tutorial + - Examples: https://github.com/SeaQL/sea-orm/tree/master/examples + - Cookbook: https://www.sea-ql.org/sea-orm-cookbook Join our Discord server to chat with others in the SeaQL community! - - invitation link: https://discord.com/invite/uCPdDXzbdv + - Invitation: https://discord.com/invite/uCPdDXzbdv - If you like what we do, consider starring, commenting, sharing and contributing! + SeaQL Community Survey 2023 + - Link: https://sea-ql.org/community-survey + + If you like what we do, consider starring, sharing and contributing! "# )] pub struct Cli { diff --git a/src/lib.rs b/src/lib.rs index a5ce1fe3..d77f52d8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,17 +29,18 @@ //! ## Getting Started //! //! [![GitHub stars](https://img.shields.io/github/stars/SeaQL/sea-orm.svg?style=social&label=Star&maxAge=1)](https://github.com/SeaQL/sea-orm/stargazers/) -//! If you like what we do, consider starring, commenting, sharing and contributing! +//! If you like what we do, consider starring, sharing and contributing! +//! +//! + [Documentation](https://www.sea-ql.org/SeaORM) +//! + [Tutorial](https://www.sea-ql.org/sea-orm-tutorial) +//! + [Cookbook](https://www.sea-ql.org/sea-orm-cookbook) //! //! [![Discord](https://img.shields.io/discord/873880840487206962?label=Discord)](https://discord.com/invite/uCPdDXzbdv) //! Join our Discord server to chat with others in the SeaQL community! //! -//! + [Getting Started](https://www.sea-ql.org/SeaORM/docs/index) -//! + [Step-by-step Tutorials](https://www.sea-ql.org/sea-orm-tutorial/) -//! + [Cookbook](https://www.sea-ql.org/sea-orm-cookbook/) -//! + [Usage Example](https://github.com/SeaQL/sea-orm/tree/master/examples/basic) +//! Please help us with maintaining SeaORM by completing the [SeaQL Community Survey 2023](https://sea-ql.org/community-survey)! //! -//! Integration examples +//! Integration examples: //! //! + [Actix v4 Example](https://github.com/SeaQL/sea-orm/tree/master/examples/actix_example) //! + [Actix v3 Example](https://github.com/SeaQL/sea-orm/tree/master/examples/actix3_example) @@ -61,9 +62,9 @@ //! //! Built upon [SeaQuery](https://github.com/SeaQL/sea-query), SeaORM allows you to build complex dynamic queries. //! -//! 3. Multi-backend +//! 3. Testable //! -//! You can develop applications targeting multiple backends, or use Mock / SQLite as a test double in test suites. +//! Use Mock / SQLite to write tests for your application logic. //! //! 4. Service Oriented //!