Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gbenson/hive
Monorepo microservice experiment
https://github.com/gbenson/hive
infra mediawiki microservices monorepo pika rabbitmq
Last synced: 4 months ago
JSON representation
Monorepo microservice experiment
- Host: GitHub
- URL: https://github.com/gbenson/hive
- Owner: gbenson
- Created: 2024-09-02T10:00:31.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-07T19:17:49.000Z (4 months ago)
- Last Synced: 2024-10-07T19:22:24.834Z (4 months ago)
- Topics: infra, mediawiki, microservices, monorepo, pika, rabbitmq
- Language: Python
- Homepage:
- Size: 130 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hive
## Invocation
```sh
docker compose up --remove-orphans --detach
```## Development
### Python
You can create per-project virtual environments or use the same one for
everything, it's up to you. Either way you should install the common
cross-package dependencies (listed in `requirements.txt`) as follows:```sh
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install wheel
pip install -r requirements.txt
```