A simple merging package manager for microservices
Project description
# stir
![stir header image](stir-800x200.png?raw=true)
stir is a tool for synchronizing files between two or more systems — a general purpose package manager.
stir is a simple method of sharing source code libraries between microservices, fetching credential files (like Google’s service account credentials.json), or any other files.
## How It Works
A package containing some files is created and placed on your private server.
The package is then installed via stir install package-name wherever the files are needed.
## Features
Merging - Multiple packages can be installed in the same directory.
Easy - Creating and publishing packages is trivial.
Language Agnostic - Python, JavaScript, C source, or any file type you need to package and share.
Secure - Packages can require authentication to update or fetch.
Private - Host your own stir server.
Microservices - No need to duplicate code between services.
## Examples
### Sharing Source Code
Project bar depends on libraries maintained in project foo’s git repository.
- From foo’s git repository, in a directory that will be the package root, create your package.
stir upsert foolibs -p “**.py”
This will find all files in the current that match **.py (** is the convention for recursive matching).
From foo’s git repository, run stir publish foolibs. This will bundle the package (foolibs-0.0.1.zip) and push it to the server.
- When working in the bar project, fetch the latest foolibs package.
stir install foolibs
If foolibs is not installed, or an older version, this will pull the most recent foolibs package from your stir server and install it in foolibs/.
- Add to your deployment pipeline. For example, in your Dockerfile:
RUN pip install stir && (cd /app/bar && stir -y install foolibs)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file stir-0.0.3.tar.gz
.
File metadata
- Download URL: stir-0.0.3.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78d77419acc6fb4831394891b792607e2f2f09abdc6489c44a0667ef008be647 |
|
MD5 | a00c760b9b1487cc2075299d31327bed |
|
BLAKE2b-256 | 97faebcf2fd06238289701389d8da9dc5f9e40d56b8edc0ba854c4e87ff7a47c |