Installation¶
From Source
git clone https://gitlab.pyrmin.dev/PyRmin/PyRmin.git
cd PyRmin
python setup.py install
QuickStart With Podman¶
Pull from docker.io registry
make start
or build it
make build
make start
Create an alias to use the cli from a container
alias pyrmin="podman -f $(pwd)/container/pyrmin.kube.yml run --rm --entrypoint=/opt/pyrmin/bin/pyrmin"
pyrmin --help
Test
curl http://localhost:8000
QuickStart¶
Install dependencies
Python 3
pyvenv --clear --system-site-packages --without-pip env
source env/bin/activate
python setup.py install
pyrmin --help
Python 2
virtualenv-2.7 --system-site-packages env
source env/bin/activate
python setup.py install
pyrmin --help