Skip to content
Snippets Groups Projects
Commit b91add17 authored by Kenechukwu Orjiene's avatar Kenechukwu Orjiene
Browse files

Merge branch 'main' into 'main'

Few fixes (wrong names, missing __init__.py files, doc links)

See merge request !17
parents 93b81076 1af37178
No related branches found
No related tags found
1 merge request!17Few fixes (wrong names, missing __init__.py files, doc links)
......@@ -32,15 +32,15 @@ async def handle_create(activity: APActivity):
```
#### Documentation
- [Getting Started](docs/getting-started.md)
- [Configuration Guide](docs/configuration.md)
- [Architecture Overview](docs/architecture.md)
- [Security Guide](docs/security.md)
- [API Reference](docs/api/)
- [Getting Started](documentation/getting-started.md)
- [Configuration Guide](documentation/configuration.md)
- [Architecture Overview](documentation/architecture.md)
- [Security Guide](documentation/security.md)
- [API Reference](documentation/api/)
- [Testing Guide](tests/README.md)
- [Running an Example](examples/README.md)
#### Requirements
- Python 3.9+
- PostgreSQL (recommended) or SQLite
- Redis (optional, for caching)
\ No newline at end of file
- Redis (optional, for caching)
......@@ -41,4 +41,4 @@ def get_storage_backend(backend_type: str) -> type[StorageBackend]:
# def register_backend(name: str, backend_class: type[StorageBackend]) -> None:
# """Register a new storage backend."""
# STORAGE_BACKENDS[name] = backend_class
\ No newline at end of file
# STORAGE_BACKENDS[name] = backend_class
......@@ -145,5 +145,5 @@ class MiddlewareError(ActivityPubException):
pass
class ConfigError(ActivityPubException):
"""Raised when configuration-related errors occur."""
pass
\ No newline at end of file
"""Raised when config-related errors occur."""
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment