Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dori-dev/django-blog
Create simple blog with django
https://github.com/dori-dev/django-blog
blog bootstrap css django html js python
Last synced: 7 days ago
JSON representation
Create simple blog with django
- Host: GitHub
- URL: https://github.com/dori-dev/django-blog
- Owner: dori-dev
- License: mit
- Created: 2022-02-28T06:35:13.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-22T14:26:44.000Z (over 2 years ago)
- Last Synced: 2023-03-05T17:29:19.032Z (over 1 year ago)
- Topics: blog, bootstrap, css, django, html, js, python
- Language: Python
- Homepage: http://dblog.pythonanywhere.com/
- Size: 3.11 MB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Blog
Create beautiful blog with Django & Bootstrap.
#
## Tools
- Django 4
- Bootstrap 5#
# How to Run Project## Download Codes
```
git clone https://github.com/dori-dev/django-blog.git
```
```
cd django-blog
```## Build Virtual Environment
```
python3 -m venv env
```
```
source env/bin/activate
```## Install Project Requirements
```
pip install -r requirements.txt
```## Migrate Models
```
python manage.py makemigrations articles
```
```
python manage.py makemigrations todoapp
```
```
python manage.py migrate
```## Add Super User
```
python manage.py createsuperuser
```## Run Codes
```
python manage.py runserver
```## Open On Browser
Home Page
[127.0.0.1:8000](http://127.0.0.1:8000/)Admin Page
[127.0.0.1:8000/admin](http://127.0.0.1:8000/admin)#
## LinksDemo of Project: [dblog.pythonanywhere.com](http://dblog.pythonanywhere.com/)
Download Source Code: [Click Here](https://github.com/dori-dev/django-todo/archive/refs/heads/master.zip)
My Github Account: [Click Here](https://github.com/dori-dev/)