https://github.com/safe-global/safe-queue-service
Safe Core{API} transaction queue
https://github.com/safe-global/safe-queue-service
Last synced: about 1 year ago
JSON representation
Safe Core{API} transaction queue
- Host: GitHub
- URL: https://github.com/safe-global/safe-queue-service
- Owner: safe-global
- License: mit
- Created: 2024-07-22T09:58:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-26T13:02:50.000Z (about 1 year ago)
- Last Synced: 2025-05-26T14:23:08.100Z (about 1 year ago)
- Language: Python
- Size: 24.4 KB
- Stars: 1
- Watchers: 5
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://github.com/safe-global/safe-queue-service/actions/workflows/ci.yml)
[](https://coveralls.io/github/safe-global/safe-queue-service?branch=main)
[](https://github.com/pre-commit/pre-commit)

[](https://hub.docker.com/r/safeglobal/safe-queue-service)
# Safe Queue Service
Safe Core{API} transaction queue service
## Configuration
```bash
cp .env.sample .env
```
## Execution
```bash
docker compose build
docker compose up
```
Then go to http://localhost:8000 to see the service documentation.
## Setup for development
Use a virtualenv if possible:
```bash
python -m venv venv
```
Then enter the virtualenv and install the dependencies:
```bash
source venv/bin/activate
pip install -r requirements/dev.txt
pre-commit install -f
cp .env.sample .env
```
## Contributors
[See contributors](https://github.com/safe-global/safe-queue-service/graphs/contributors)