ellar icon indicating copy to clipboard operation
ellar copied to clipboard

Ellar is a lightweight ASGI framework for building efficient and scalable server-side python applications. It supports both OOP (Object-Oriented Programming) and FP (Functional Programming). Built wit...

Results 14 ellar issues
Sort by recently updated
recently updated
newest added

Now,to realize the provider,3 steps needed: 1\declare the injectable service: ![image](https://github.com/user-attachments/assets/4988c39a-8bea-452e-ac3c-2d276844b302) 2\give it as a argument of AppFactory: ![image](https://github.com/user-attachments/assets/d171338c-a80a-4239-9886-ef479e3d0749) 3\use really the provider: ![image](https://github.com/user-attachments/assets/700c3265-41f6-416e-95e6-cec795ba1e00) that is complex.why need to use...

Updates the requirements on [pre-commit](https://github.com/pre-commit/pre-commit) to permit the latest version. Release notes Sourced from pre-commit's releases. pre-commit v4.3.0 Features language: docker / language: docker_image: detect rootless docker. #3446 PR by...

dependencies
python

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=aiohttp&package-manager=pip&previous-version=3.10.5&new-version=3.13.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`....

dependencies
python

```py from starlette.middleware.sessions import SessionMiddleware from ellar.core.middleware import Middleware class AppConfig(Config): SECRET_KEY = secret_key MIDDLEWARE = [Middleware(SessionMiddleware, max_age=14 * 24 * 60 * 60)] ``` got ```py INFO: Started server...