old-website/README.md

23 lines
343 B
Markdown
Raw Normal View History

2023-06-18 21:50:07 +00:00
My little Django website + blog
## Installation
Clone this repo and cd into it
2023-08-07 08:50:10 +00:00
### Install dependencies
2023-06-18 21:50:07 +00:00
```bash
2023-08-07 08:50:10 +00:00
poetry update
2023-06-18 21:50:07 +00:00
```
### First time setup
```bash
2023-08-07 08:50:10 +00:00
poetry run python3 manage.py createsuperuser
```
### Running
```bash
poetry run gunicorn -w 4 -b :6969 --chdir /var/www/html/Fluffys-website website.wsgi:application
2023-06-18 21:50:07 +00:00
```
ok bye!