You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Holger Frey
62a25301a8
|
7 years ago | |
---|---|---|
.github | 7 years ago | |
docs | 7 years ago | |
ordr2 | 7 years ago | |
tests | 7 years ago | |
.editorconfig | 7 years ago | |
.gitignore | 7 years ago | |
AUTHORS.rst | 7 years ago | |
CONTRIBUTING.rst | 7 years ago | |
HISTORY.rst | 7 years ago | |
LICENSE | 7 years ago | |
MANIFEST.in | 7 years ago | |
Makefile | 7 years ago | |
README.rst | 7 years ago | |
development.ini | 7 years ago | |
production.ini.template | 7 years ago | |
pytest.ini | 7 years ago | |
requirements_dev.txt | 7 years ago | |
setup.cfg | 7 years ago | |
setup.py | 7 years ago |
README.rst
==============================================
Ordr2 - CPI Ordering System, php2python branch
==============================================
This is a rewrite in Python of the original Ordr system by Sebastian Sebald
that can still be found here: https://github.com/sebald/Ordr
Installation
------------
Installation consists of three steps:
1. clone the project and checkout the php2python branch
> git clone https://git.cpi.imtek.uni-freiburg.de/holgi/ordr2
> cd ordr2
> git checkout php2pyton
2. create a python virtual environment and activate it
> python3 -m venv ordr-venv
> source ordr-venv/bin/activate
3. install the cloned package and deactivate the environment
(ordr-venv) > pip install .
> deactivate
Updating
--------
updating consists of three steps:
1. Update the source code
> cd ordr2
> git pull origin php2python
2. activate the python virtual environment
> source ordr-venv/bin/activate
3. install the new version and deactivate the environment
(ordr-venv) > pip install .
> deactivate