Blogpy

Blogpy project based on Python 3.8 and Django 2.2
Alternatives To Blogpy
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Awesome Cheatsheets32,846
4 days ago86mitJavaScript
👩‍💻👨‍💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file.
Cookiecutter Django10,315
1a day ago5January 15, 2018108bsd-3-clausePython
Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly.
Recipes3,865
4 days ago261otherHTML
Application for managing recipes, planning meals, building shopping lists and much much more!
Linkding3,067
10 days ago80mitPython
Self-hosted bookmark service
Gerapy2,906
8a month ago47December 30, 202154mitPython
Distributed Crawler Management Framework Based on Scrapy, Scrapyd, Django and Vue.js
Viper2,796
2 months ago14bsd-3-clause
Redteam operation platform with webui 图形化红队行动辅助平台
Ownphotos2,687
3 months ago90mitJupyter Notebook
Self hosted alternative to Google Photos
Django React Redux Base2,619
2 years ago23mitJavaScript
Seedstars Labs Base Django React Redux Project
Misago2,287
3 days ago73gpl-2.0Python
Misago is fully featured modern forum application that is fast, scalable and responsive.
Shynet2,148
a month ago40apache-2.0Python
Modern, privacy-friendly, and detailed web analytics that works without cookies or JS.
Alternatives To Blogpy
Select To Compare


Alternative Project Comparisons
Readme

Blogpy

Blogpy is a simple blog application written by Python3 & Django2.2. This project is for educational purposes with FREE video course which you can find on https://boby.cloud .

Demo

Final project preview.

Technologies used in this course

This project and video series are best practices for Backend Engineering with Python and Django and the most common technologies every backend engineer should know. Technologies used in this course are listed below.

Installation

First clone or download this project.

$ git clone https://github.com/bobycloud/blogpy.git

Then create docker network and volumes as below.

$ docker volume create blogpy_postgresql
$ docker volume create blogpy_static_volume
$ docker volume create blogpy_files_volume
$ docker network create nginx_network
$ docker network create blogpy_network

You need to create .env file in the project root file with default values.

POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=postgres

Now run django and postgresql with docker-compose.

$ docker-compose up -d

Then run nginx container with docker-compose.

$ cd config/nginx/
$ docker-compose up -d

You can see blogpy web page on http://localhost, Template and API's are accessable by docker containers which you can see with below command.

$ docker ps -a

Output should be like this.

CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES
fc6cc9d6d3d7        nginx_nginx         "nginx -g 'daemon of…"   2 hours ago         Up 2 hours          0.0.0.0:80->80/tcp       nginx
05103904dcb8        ae80efb17475        "gunicorn --chdir bl…"   2 hours ago         Up 2 hours          0.0.0.0:8000->8000/tcp   blogpy
4a183e90a9eb        postgres:10         "docker-entrypoint.s…"   2 hours ago         Up 2 hours          0.0.0.0:5432->5432/tcp   blogpy_postgresql

nginx container as common web server, blogpy container as django application and blogpy_postgresql as postgreSQL database container.

Contributing

Contributions are welcome and will be fully credited. I'd be happy to accept PRs for template extending.

License

This project is licensed under the MIT License - see the LICENSE file for details

Popular Django Projects
Popular Docker Projects
Popular Frameworks Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Python
Docker
Django
Postgresql
Course
Nginx
Docker Compose