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 🐍
- Host: GitHub
- URL: https://github.com/guillaumefalourd/poc-django-python
- Owner: GuillaumeFalourd
- License: apache-2.0
- Created: 2021-03-30T21:10:31.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-30T21:46:34.000Z (over 4 years ago)
- Last Synced: 2025-01-12T06:07:12.726Z (9 months ago)
- Topics: django, poc, python
- Language: Python
- Homepage: https://docs.djangoproject.com/en/3.1/
- Size: 245 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# poc-django-python

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/
```