This project is a blog post website built with
- Django Rest Frawork (for authentication and blogs crud)
- Fastapi (for comments crud)
- Nuxtjs (Fronend)
. It uses Docker and Docker Compose for containerization.
- Docker: Install Docker
- Docker Compose: Install Docker Compose
git clone repourl
```bash
docker-compose -f docker-compose.yml up --build
```
i alreay put that in Makefile, you need just to run
```bash
make
```
makefile for windows: https://stackoverflow.com/questions/2532234/how-to-run-a-makefile-in-windows
makefile for linux
```bash
sudo apt update
sudo apt install make
```
docker-compose exec web python manage.py makemigrations
docker-compose exec web python manage.py migrate
To view the website, navigate to http://localhost:3000 in your web browser.