An open API service indexing awesome lists of open source software.

https://github.com/sauberr/blog_application

Simple blog app written by Django
https://github.com/sauberr/blog_application

django postgresql python

Last synced: 3 months ago
JSON representation

Simple blog app written by Django

Awesome Lists containing this project

README

        

# Blog Application

The project for study Django.

#### Stack:

- [Python](https://www.python.org/downloads/)
- [PostgreSQL](https://www.postgresql.org/)

## Local Developing

All actions should be executed from the source directory of the project and only after installing all requirements.

1. Firstly, create and activate a new virtual environment:
```bash
python3.11 -m venv ../venv
source ../venv/bin/activate
```

2. Install packages:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```

## Run application
The uvicorn web server is used to run Django. The command to run looks like this:
```
py manage.py runserver
```