https://github.com/dataideaorg/django-blog-project
Django blog project
https://github.com/dataideaorg/django-blog-project
Last synced: 9 months ago
JSON representation
Django blog project
- Host: GitHub
- URL: https://github.com/dataideaorg/django-blog-project
- Owner: dataideaorg
- Created: 2024-05-29T06:53:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-29T07:13:05.000Z (over 1 year ago)
- Last Synced: 2025-03-21T20:47:33.973Z (10 months ago)
- Language: CSS
- Size: 17.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Personal Blog Site
This is a django blog site
## Technologies used
- Python
- HTML
- Bootstrap CSS
- VS Code
## Set up
- Clone the project
```bash
https://github.com/dataidea/django-blog-project.git
```
- Create and activate a python virtual enviroment the way your system recommends eg for linux
```bash
python3 -m venv virtualenv
source virtualenv/bin/activate
```
- Install all the packages from the _requirements.txt_ file
```bash
pip install -r requirements.txt
```
- Run project
```bash
python manage.py runserver
```