CPI Ordering System (the old version)
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
Holger Frey f8d6d475d1 refactored account resource and view 7 years ago
ordr refactored account resource and view 7 years ago
tests refactored account resource and view 7 years ago
.coveragerc initial import of pyramid project 7 years ago
.gitignore finished registration form processing 7 years ago
CHANGES.txt initial import of pyramid project 7 years ago
MANIFEST.in initial import of pyramid project 7 years ago
Makefile added account settings and change password 7 years ago
Pipfile added pyramid_listing to requiered packages 7 years ago
README.txt initial import of pyramid project 7 years ago
development.ini finished registration form processing 7 years ago
production.ini initial import of pyramid project 7 years ago
requirements_dev.txt added Makefile and others 7 years ago
setup.cfg added test for prefilling of forms 7 years ago
setup.py finished registration form processing 7 years ago

README.txt

Ordr
====

This is a complete redo of the Ordr project.


Getting Started
---------------

- Change directory into your newly created project.

cd ordr

- Create a Python virtual environment.

python3 -m venv env

- Upgrade packaging tools.

env/bin/pip install --upgrade pip setuptools

- Install the project in editable mode with its testing requirements.

env/bin/pip install -e ".[testing]"

- Configure the database.

env/bin/initialize_ordr_db development.ini

- Run your project's tests.

env/bin/pytest

- Run your project.

env/bin/pserve development.ini