Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gbenson/hive

Monorepo microservice experiment
https://github.com/gbenson/hive

infra mediawiki microservices monorepo pika rabbitmq

Last synced: 1 day ago
JSON representation

Monorepo microservice experiment

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
```