Update README.md

This commit is contained in:
Michał 2023-08-07 09:50:10 +01:00 committed by GitHub
parent 42ff1ce803
commit daecf442e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,15 +3,20 @@ My little Django website + blog
## Installation ## Installation
Clone this repo and cd into it Clone this repo and cd into it
### Running ### Install dependencies
```bash ```bash
docker-compose up poetry update
``` ```
### First time setup ### First time setup
```bash ```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! ok bye!