Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 720 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 720 Bytes

uv-std-app

Check if standards' peaks drift during a chromatography run

Instructions

clone and cd

git clone [email protected]:chanana/uv-std-app.git
cd uv-std-app

if you have poetry use

poetry install
poetry run pre-commit install
poetry shell

else

make virtual environment, activate it and install requirements

python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip wheel
pip install -r requirements.txt

start app

python uv-std-app.py

In order to run on a localhost setting, modify the last line of the file to say: app.run_server() i.e. remove host='0.0.0.0' from the parentheses.


Development

submit a PR