An open API service indexing awesome lists of open source software.

https://github.com/guillaumefalourd/poc-django-python

POC of a personal Blog using Django with Python 🐍
https://github.com/guillaumefalourd/poc-django-python

django poc python

Last synced: 7 months ago
JSON representation

POC of a personal Blog using Django with Python 🐍

Awesome Lists containing this project

README

          

# poc-django-python

![title](/docs/python-django.png)

This repository has been implemented following this [django-tutorial](https://github.com/bradmorg/django-tutorial)

## Setup ENV and Install Django

```bash
#Make sure python is installed
python3 --version
python3 -m venv venv
.\venv\Scripts\activate
pip3 install django
python3 -m django --version
```

## Testing

Enter the blog directory:

```bash
cd blog
```

Then execute the following command to run the server

```bash
python manage.py runserver
```

Then access on your navigator:

```bash
http://127.0.0.1:8000/
```