Community Survey

This commit is contained in:
Chris Tsang 2023-07-27 19:11:17 +08:00
parent ec581abf56
commit ae8dcceb43
3 changed files with 28 additions and 23 deletions

View File

@ -19,17 +19,18 @@
## Getting Started ## 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/) [![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) [![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! Join our Discord server to chat with others in the SeaQL community!
+ [Getting Started](https://www.sea-ql.org/SeaORM/docs/index) Please help us with maintaining SeaORM by completing the [SeaQL Community Survey 2023](https://sea-ql.org/community-survey)!
+ [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)
Integration examples Integration examples:
+ [Actix v4 Example](https://github.com/SeaQL/sea-orm/tree/master/examples/actix_example) + [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) + [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. 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 4. Service Oriented

View File

@ -24,16 +24,19 @@ AUTHORS:
An async & dynamic ORM for Rust \ | ,/ An async & dynamic ORM for Rust \ | ,/
=============================== \|_/ =============================== \|_/
Getting Started! Getting Started
- documentation: https://www.sea-ql.org/SeaORM - Documentation: https://www.sea-ql.org/SeaORM
- step-by-step tutorials: https://www.sea-ql.org/sea-orm-tutorial - Tutorial: https://www.sea-ql.org/sea-orm-tutorial
- integration examples: https://github.com/SeaQL/sea-orm/tree/master/examples - Examples: https://github.com/SeaQL/sea-orm/tree/master/examples
- cookbook: https://www.sea-ql.org/sea-orm-cookbook - Cookbook: https://www.sea-ql.org/sea-orm-cookbook
Join our Discord server to chat with others in the SeaQL community! 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 { pub struct Cli {

View File

@ -29,17 +29,18 @@
//! ## Getting Started //! ## 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/) //! [![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) //! [![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! //! Join our Discord server to chat with others in the SeaQL community!
//! //!
//! + [Getting Started](https://www.sea-ql.org/SeaORM/docs/index) //! Please help us with maintaining SeaORM by completing the [SeaQL Community Survey 2023](https://sea-ql.org/community-survey)!
//! + [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)
//! //!
//! Integration examples //! Integration examples:
//! //!
//! + [Actix v4 Example](https://github.com/SeaQL/sea-orm/tree/master/examples/actix_example) //! + [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) //! + [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. //! 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 //! 4. Service Oriented
//! //!