https://github.com/arvind-4/blog-backend
Simple Content Management System build on Django and Django Rest Framework.
https://github.com/arvind-4/blog-backend
django django-application django-framework django-rest-api django-rest-framework django-restframework python3 python39
Last synced: about 1 month ago
JSON representation
Simple Content Management System build on Django and Django Rest Framework.
- Host: GitHub
- URL: https://github.com/arvind-4/blog-backend
- Owner: arvind-4
- License: mit
- Created: 2021-12-13T12:51:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T11:17:47.000Z (over 1 year ago)
- Last Synced: 2025-02-17T13:18:06.899Z (4 months ago)
- Topics: django, django-application, django-framework, django-rest-api, django-rest-framework, django-restframework, python3, python39
- Language: Python
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blog Backend
Simple Content Management System build on Django and Django Rest Framework.
### Get the Code
- Clone Repo
```bash
mkdir blog-backend
cd blog-backend
git clone https://github.com/Arvind-4/blog-backend.git .
```
- Install Virtual Environment and Dependencies```bash
pip install virtualenv
python3.10 -m venv .
source bin/activate
pip install -r requirements.txt
```- Run Local Server
```bash
python manage.py runserver
```