From 5cb2992c15bdd5e3ad00140fd576bc1f011b6d6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Odini?= Date: Wed, 11 Sep 2024 22:48:01 +0200 Subject: [PATCH] rewording --- INSTALL.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index c226b843..8403d8b9 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,4 +1,4 @@ -# HOW TO install/test Open Prices API +# HOW TO install Open Prices API ## Prerequisites @@ -19,14 +19,13 @@ cd open-prices ### Without Docker ``` -# Install poetry (Python dependency manager) at version 1.6.1 +# Install poetry (Python dependency manager) # see https://python-poetry.org/docs/ # Install dependencies (pyproject.toml) poetry install -# Note: - All future commands should be prefixed with `poetry run` +# Note: all future commands should be prefixed with `poetry run` # Apply migrations python manage.py migrate @@ -34,9 +33,10 @@ python manage.py migrate # Run Locally python manage.py runserver -# Now server will run on http://127.0.0.1:8000/ but you can change the port as -python manage.py runserver 8001 - Will run on http://127.0.0.1:8001/ +# Now the server will run on http://127.0.0.1:8000 ! + +# Note: you can change the port if you want +python manage.py runserver 8001 ``` ### With Docker