Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xsirsaif/fastapiusers-edgedb
Edgedb adapter for fastapi-users
https://github.com/0xsirsaif/fastapiusers-edgedb
Last synced: 2 months ago
JSON representation
Edgedb adapter for fastapi-users
- Host: GitHub
- URL: https://github.com/0xsirsaif/fastapiusers-edgedb
- Owner: 0xsirsaif
- License: mit
- Created: 2023-01-28T06:28:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T15:15:22.000Z (almost 2 years ago)
- Last Synced: 2024-10-04T17:25:42.349Z (3 months ago)
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-edgedb - EdgeDB FastAPI Users - An adapter for FastAPI Users that utilizes EdgeDB as storage. (Integrations)
README
# FastAPI Users - Database adapter for EdgeDB
---
**Documentation**: https://fastapi-users.github.io/fastapi-users/
**Source Code**: https://github.com/fastapi-users/fastapi-users
---
Add quickly a registration and authentication system to your [FastAPI](https://fastapi.tiangolo.com/) project. **FastAPI Users** is designed to be as customizable and adaptable as possible.
**Sub-package for EdgeDB support in FastAPI Users.**
## Development
### Setup environment
You should create a virtual environment and activate it:
```bash
python -m venv venv/
``````bash
source venv/bin/activate
```And then install the development dependencies:
```bash
make install
```### Run unit tests
You can run all the tests with:
```bash
make test
```Alternatively, you can run `pytest` yourself:
```bash
pytest
```There are quite a few unit tests, so you might run into ulimit issues where there are too many open file descriptors. You may be able to set a new, higher limit temporarily with:
```bash
ulimit -n 2048
```### Format the code
Execute the following command to apply `isort` and `black` formatting:
```bash
make format
```## License
This project is licensed under the terms of the MIT license.