From daecf442e8b770e215127ff6844fe3f72f2df24a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82?= Date: Mon, 7 Aug 2023 09:50:10 +0100 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5efa1b..9231044 100644 --- a/README.md +++ b/README.md @@ -3,15 +3,20 @@ My little Django website + blog ## Installation Clone this repo and cd into it -### Running +### Install dependencies ```bash -docker-compose up +poetry update ``` ### First time setup ```bash -docker-compose exec website python3 /app/manage.py createsuperuser +poetry run python3 manage.py createsuperuser +``` + +### Running +```bash +poetry run gunicorn -w 4 -b :6969 --chdir /var/www/html/Fluffys-website website.wsgi:application ``` ok bye!